borderLeftWidth.js 378 Bytes
'use strict';

var isValid = module.exports.isValid = require('./borderWidth').isValid;

module.exports.definition = {
    set: function (v) {
        if (isValid(v)) {
            this._setProperty('border-left-width', v);
        }
    },
    get: function () {
        return this.getPropertyValue('border-left-width');
    },
    enumerable: true,
    configurable: true
};