webkitTextFillColor.js
 1  'use strict';
 2  
 3  var parseColor = require('../parsers').parseColor;
 4  
 5  module.exports.definition = {
 6    set: function(v) {
 7      this._setProperty('-webkit-text-fill-color', parseColor(v));
 8    },
 9    get: function() {
10      return this.getPropertyValue('-webkit-text-fill-color');
11    },
12    enumerable: true,
13    configurable: true,
14  };