1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| '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,
| };
|
|