'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 };