blob: c6fd7c4631007b8d7ba97e18690ab0713f822db2 [file] [log] [blame]
'use strict';
var parseColor = require('../parsers').parseColor;
module.exports.definition = {
set: function (v) {
this._setProperty('-webkit-border-start-color', parseColor(v));
},
get: function () {
return this.getPropertyValue('-webkit-border-start-color');
},
enumerable: true,
configurable: true
};