aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jsdom/node_modules/cssstyle/lib/properties/webkitColumnWidth.js
blob: 7bc231f63921ff8c424168ff11bd51e4e87a7f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'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
};