Website/node_modules/cssstyle/lib/properties/webkitFontSmoothing.js

13 lines
274 B
JavaScript

'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('-webkit-font-smoothing', v);
},
get: function () {
return this.getPropertyValue('-webkit-font-smoothing');
},
enumerable: true,
configurable: true
};