Website/node_modules/cssstyle/lib/properties/webkitBorderStartWidth.js

13 lines
282 B
JavaScript

'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('-webkit-border-start-width', v);
},
get: function () {
return this.getPropertyValue('-webkit-border-start-width');
},
enumerable: true,
configurable: true
};