aboutsummaryrefslogtreecommitdiff
path: root/node_modules/cssstyle/lib/properties/textUnderlineColor.js
blob: a243a9ca5ab76b12f28114df3a4e9af6428fe63e (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('text-underline-color', parseColor(v));
  },
  get: function() {
    return this.getPropertyValue('text-underline-color');
  },
  enumerable: true,
  configurable: true,
};