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