borderBottom.js 522 B

1234567891011121314151617
  1. 'use strict';
  2. var shorthandSetter = require('../parsers').shorthandSetter;
  3. var shorthandGetter = require('../parsers').shorthandGetter;
  4. var shorthand_for = {
  5. 'border-bottom-width': require('./borderBottomWidth'),
  6. 'border-bottom-style': require('./borderBottomStyle'),
  7. 'border-bottom-color': require('./borderBottomColor'),
  8. };
  9. module.exports.definition = {
  10. set: shorthandSetter('border-bottom', shorthand_for),
  11. get: shorthandGetter('border-bottom', shorthand_for),
  12. enumerable: true,
  13. configurable: true,
  14. };