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

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

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