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

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