This commit is contained in:
2025-09-11 07:45:25 -07:00
parent ca8798848e
commit 955946e79d
2873 changed files with 299107 additions and 183282 deletions

13
node_modules/cssstyle/lib/properties/marginTop.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
var margin = require('./margin.js');
var parsers = require('../parsers.js');
module.exports.definition = {
set: parsers.subImplicitSetter('margin', 'top', margin.isValid, margin.parser),
get: function() {
return this.getPropertyValue('margin-top');
},
enumerable: true,
configurable: true,
};