| 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 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1623 interpolable: true, | 1623 interpolable: true, |
| 1624 svg: true, | 1624 svg: true, |
| 1625 }, | 1625 }, |
| 1626 { | 1626 { |
| 1627 name: "stroke-width", | 1627 name: "stroke-width", |
| 1628 converter: "convertUnzoomedLength", | 1628 converter: "convertUnzoomedLength", |
| 1629 inherited: true, | 1629 inherited: true, |
| 1630 interpolable: true, | 1630 interpolable: true, |
| 1631 svg: true, | 1631 svg: true, |
| 1632 }, | 1632 }, |
| 1633 "table-layout", | 1633 { |
| 1634 name: "table-layout", |
| 1635 initial_keyword: "auto", |
| 1636 keyword_only: true, |
| 1637 keywords: [ |
| 1638 "auto", "fixed" |
| 1639 ] |
| 1640 }, |
| 1634 { | 1641 { |
| 1635 name: "tab-size", | 1642 name: "tab-size", |
| 1636 api_class: true, | 1643 api_class: true, |
| 1637 api_methods: ["parseSingleValue"], | 1644 api_methods: ["parseSingleValue"], |
| 1638 converter: "convertLengthOrTabSpaces", | 1645 converter: "convertLengthOrTabSpaces", |
| 1639 inherited: true, | 1646 inherited: true, |
| 1640 type_name: "TabSize", | 1647 type_name: "TabSize", |
| 1641 }, | 1648 }, |
| 1642 { | 1649 { |
| 1643 name: "text-align", | 1650 name: "text-align", |
| (...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2962 { | 2969 { |
| 2963 name: "-webkit-transition-timing-function", | 2970 name: "-webkit-transition-timing-function", |
| 2964 alias_for: "transition-timing-function", | 2971 alias_for: "transition-timing-function", |
| 2965 }, | 2972 }, |
| 2966 { | 2973 { |
| 2967 name: "-webkit-user-select", | 2974 name: "-webkit-user-select", |
| 2968 alias_for: "user-select", | 2975 alias_for: "user-select", |
| 2969 }, | 2976 }, |
| 2970 ], | 2977 ], |
| 2971 } | 2978 } |
| OLD | NEW |