summaryrefslogtreecommitdiff
path: root/alarm/node_modules/cssstyle/lib/properties/width.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/cssstyle/lib/properties/width.js')
-rw-r--r--alarm/node_modules/cssstyle/lib/properties/width.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/alarm/node_modules/cssstyle/lib/properties/width.js b/alarm/node_modules/cssstyle/lib/properties/width.js
deleted file mode 100644
index a8c365d..0000000
--- a/alarm/node_modules/cssstyle/lib/properties/width.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-
-var parseMeasurement = require('../parsers').parseMeasurement;
-
-function parse(v) {
- if (String(v).toLowerCase() === 'auto') {
- return 'auto';
- }
- if (String(v).toLowerCase() === 'inherit') {
- return 'inherit';
- }
- return parseMeasurement(v);
-}
-
-module.exports.definition = {
- set: function(v) {
- this._setProperty('width', parse(v));
- },
- get: function() {
- return this.getPropertyValue('width');
- },
- enumerable: true,
- configurable: true,
-};