cssstyle
Version:
CSSStyleDeclaration Object Model implementation
15 lines (12 loc) • 321 B
JavaScript
;
var parseColor = require('../parsers').parseColor;
module.exports.definition = {
set: function (v) {
this._setProperty('text-line-through-color', parseColor(v));
},
get: function () {
return this.getPropertyValue('text-line-through-color');
},
enumerable: true,
configurable: true,
};