borderBottomWidth.js 382 B

12345678910111213141516
  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. };