diff options
Diffstat (limited to 'alarm/node_modules/cssstyle/lib/properties/clear.js')
-rw-r--r-- | alarm/node_modules/cssstyle/lib/properties/clear.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/alarm/node_modules/cssstyle/lib/properties/clear.js b/alarm/node_modules/cssstyle/lib/properties/clear.js deleted file mode 100644 index 22d9802..0000000 --- a/alarm/node_modules/cssstyle/lib/properties/clear.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict'; - -var parseKeyword = require('../parsers').parseKeyword; - -var clear_keywords = ['none', 'left', 'right', 'both', 'inherit']; - -module.exports.definition = { - set: function(v) { - this._setProperty('clear', parseKeyword(v, clear_keywords)); - }, - get: function() { - return this.getPropertyValue('clear'); - }, - enumerable: true, - configurable: true, -}; |