| OLD | NEW |
| 1 { | 1 { |
| 2 // This file specifies all the CSS properties we support and the necessary | 2 // This file specifies all the CSS properties we support and the necessary |
| 3 // information for our code generation. The various supported arguments | 3 // information for our code generation. The various supported arguments |
| 4 // are described below with example usage | 4 // are described below with example usage |
| 5 | 5 |
| 6 parameters: { | 6 parameters: { |
| 7 // - alias_for: "other-property" | 7 // - alias_for: "other-property" |
| 8 // Properties specifying alias_for should be virtually identical to the | 8 // Properties specifying alias_for should be virtually identical to the |
| 9 // properties they alias. Minor parsing differences are allowed as long as | 9 // properties they alias. Minor parsing differences are allowed as long as |
| 10 // the CSSValues created are of the same format of the aliased property. | 10 // the CSSValues created are of the same format of the aliased property. |
| (...skipping 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 independent: true, | 1554 independent: true, |
| 1555 inherited: true, | 1555 inherited: true, |
| 1556 default_value: "auto", | 1556 default_value: "auto", |
| 1557 field_template: "keyword", | 1557 field_template: "keyword", |
| 1558 keywords: [ | 1558 keywords: [ |
| 1559 "none", "auto", "stroke", "fill", "painted", "visible", "visibleStroke",
"visibleFill", "visiblePainted", "bounding-box", "all", | 1559 "none", "auto", "stroke", "fill", "painted", "visible", "visibleStroke",
"visibleFill", "visiblePainted", "bounding-box", "all", |
| 1560 ], | 1560 ], |
| 1561 }, | 1561 }, |
| 1562 { | 1562 { |
| 1563 name: "position", | 1563 name: "position", |
| 1564 custom_inherit: true, | 1564 custom_all: true, |
| 1565 default_value: "static", | 1565 default_value: "static", |
| 1566 field_template: "keyword", | 1566 field_template: "keyword", |
| 1567 getter: "GetPosition", | 1567 getter: "GetPosition", |
| 1568 keywords: [ | 1568 keywords: [ |
| 1569 "static", "relative", "absolute", "fixed", "sticky", | 1569 "static", "relative", "absolute", "fixed", "sticky", |
| 1570 ], | 1570 ], |
| 1571 }, | 1571 }, |
| 1572 { | 1572 { |
| 1573 name: "quotes", | 1573 name: "quotes", |
| 1574 api_class: true, | 1574 api_class: true, |
| (...skipping 1606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3181 { | 3181 { |
| 3182 name: "-webkit-transition-timing-function", | 3182 name: "-webkit-transition-timing-function", |
| 3183 alias_for: "transition-timing-function", | 3183 alias_for: "transition-timing-function", |
| 3184 }, | 3184 }, |
| 3185 { | 3185 { |
| 3186 name: "-webkit-user-select", | 3186 name: "-webkit-user-select", |
| 3187 alias_for: "user-select", | 3187 alias_for: "user-select", |
| 3188 }, | 3188 }, |
| 3189 ], | 3189 ], |
| 3190 } | 3190 } |
| OLD | NEW |