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

13 lines
274 B
JavaScript
Raw Normal View History

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