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.

16 lines
353 B

  1. 'use strict';
  2. var isValid = (module.exports.isValid = require('./borderWidth').isValid);
  3. module.exports.definition = {
  4. set: function(v) {
  5. if (isValid(v)) {
  6. this._setProperty('border-bottom-width', v);
  7. }
  8. },
  9. get: function() {
  10. return this.getPropertyValue('border-bottom-width');
  11. },
  12. enumerable: true,
  13. configurable: true,
  14. };