Website/node_modules/cssstyle/lib/properties/textOverflow.js

13 lines
256 B
JavaScript

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