aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jsdom/node_modules/cssstyle/lib/properties/webkitTextEmphasisStyle.js
blob: 69f3e5a646b0f9fbadfdb1482f9bca4462ec1ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

module.exports.definition = {
    set: function (v) {
        this._setProperty('-webkit-text-emphasis-style', v);
    },
    get: function () {
        return this.getPropertyValue('-webkit-text-emphasis-style');
    },
    enumerable: true,
    configurable: true
};