GT2/GT2-Android/node_modules/cssstyle/lib/properties/webkitMaxLogicalHeight.js

13 lines
282 B
JavaScript
Raw Normal View History

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