You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
331 B

  1. 'use strict';
  2. var padding = require('./padding.js');
  3. var parsers = require('../parsers.js');
  4. module.exports.definition = {
  5. set: parsers.subImplicitSetter('padding', 'left', padding.isValid, padding.parser),
  6. get: function() {
  7. return this.getPropertyValue('padding-left');
  8. },
  9. enumerable: true,
  10. configurable: true,
  11. };