blob: 2357ed8733b37b3848da090266ec0c8124cef927 [file] [log] [blame]
'use strict';
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
};