aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js')
-rw-r--r--node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js b/node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js
new file mode 100644
index 0000000..1fca174
--- /dev/null
+++ b/node_modules/jsdom/node_modules/cssstyle/lib/properties/minWidth.js
@@ -0,0 +1,12 @@
+'use strict';
+
+module.exports.definition = {
+ set: function (v) {
+ this._setProperty('min-width', v);
+ },
+ get: function () {
+ return this.getPropertyValue('min-width');
+ },
+ enumerable: true,
+ configurable: true
+};