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

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