aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js
blob: 499545dcf38ba911f48a8958cd156adf16bd814a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

var parseColor = require('../parsers').parseColor;

module.exports.definition = {
  set: function(v) {
    this._setProperty('-webkit-border-end-color', parseColor(v));
  },
  get: function() {
    return this.getPropertyValue('-webkit-border-end-color');
  },
  enumerable: true,
  configurable: true,
};