summaryrefslogtreecommitdiff
path: root/alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js')
-rw-r--r--alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js b/alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js
deleted file mode 100644
index 9407253..0000000
--- a/alarm/node_modules/cssstyle/lib/properties/borderTopWidth.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'use strict';
-
-var isValid = require('./borderWidth').isValid;
-module.exports.isValid = isValid;
-
-module.exports.definition = {
- set: function(v) {
- if (isValid(v)) {
- this._setProperty('border-top-width', v);
- }
- },
- get: function() {
- return this.getPropertyValue('border-top-width');
- },
- enumerable: true,
- configurable: true,
-};