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
329 B

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