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.

17 lines
514 B

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