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

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