GT2/GT2-iOS/node_modules/cssstyle/lib/properties/webkitColumnWidth.js
2018-02-12 17:26:06 +00:00

12 lines
270 B
JavaScript

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