| 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 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 svg: true, | 1163 svg: true, |
| 1164 }, | 1164 }, |
| 1165 { | 1165 { |
| 1166 name: "line-height", | 1166 name: "line-height", |
| 1167 converter: "convertLineHeight", | 1167 converter: "convertLineHeight", |
| 1168 getter: "specifiedLineHeight", | 1168 getter: "specifiedLineHeight", |
| 1169 inherited: true, | 1169 inherited: true, |
| 1170 interpolable: true, | 1170 interpolable: true, |
| 1171 }, | 1171 }, |
| 1172 { | 1172 { |
| 1173 name: "line-height-step", | |
| 1174 api_class: true, | |
| 1175 api_methods: ["parseSingleValue"], | |
| 1176 converter: "convertComputedLength<uint8_t>", | |
| 1177 inherited: true, | |
| 1178 runtime_flag: "CSSSnapSize", | |
| 1179 }, | |
| 1180 { | |
| 1181 name: "list-style-image", | 1173 name: "list-style-image", |
| 1182 api_class: "CSSPropertyAPIImage", | 1174 api_class: "CSSPropertyAPIImage", |
| 1183 api_methods: ["parseSingleValue"], | 1175 api_methods: ["parseSingleValue"], |
| 1184 custom_value: true, | 1176 custom_value: true, |
| 1185 inherited: true, | 1177 inherited: true, |
| 1186 interpolable: true, | 1178 interpolable: true, |
| 1187 typedom_types: ["Image"], | 1179 typedom_types: ["Image"], |
| 1188 }, | 1180 }, |
| 1189 { | 1181 { |
| 1190 name: "list-style-position", | 1182 name: "list-style-position", |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1618 inherited: true, | 1610 inherited: true, |
| 1619 svg: true, | 1611 svg: true, |
| 1620 }, | 1612 }, |
| 1621 { | 1613 { |
| 1622 name: "size", | 1614 name: "size", |
| 1623 api_class: true, | 1615 api_class: true, |
| 1624 api_methods: ["parseSingleValue"], | 1616 api_methods: ["parseSingleValue"], |
| 1625 custom_all: true, | 1617 custom_all: true, |
| 1626 }, | 1618 }, |
| 1627 { | 1619 { |
| 1620 name: "snap-height", |
| 1621 api_class: true, |
| 1622 api_methods: ["parseSingleValue"], |
| 1623 custom_all: true, |
| 1624 inherited: true, |
| 1625 runtime_flag: "CSSSnapSize", |
| 1626 }, |
| 1627 { |
| 1628 name: "speak", | 1628 name: "speak", |
| 1629 inherited: true, | 1629 inherited: true, |
| 1630 }, | 1630 }, |
| 1631 { | 1631 { |
| 1632 name: "stop-color", | 1632 name: "stop-color", |
| 1633 api_class: "CSSPropertyAPIColor", | 1633 api_class: "CSSPropertyAPIColor", |
| 1634 api_methods: ["parseSingleValue"], | 1634 api_methods: ["parseSingleValue"], |
| 1635 converter: "convertColor", | 1635 converter: "convertColor", |
| 1636 interpolable: true, | 1636 interpolable: true, |
| 1637 svg: true, | 1637 svg: true, |
| (...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3091 { | 3091 { |
| 3092 name: "-webkit-transition-timing-function", | 3092 name: "-webkit-transition-timing-function", |
| 3093 alias_for: "transition-timing-function", | 3093 alias_for: "transition-timing-function", |
| 3094 }, | 3094 }, |
| 3095 { | 3095 { |
| 3096 name: "-webkit-user-select", | 3096 name: "-webkit-user-select", |
| 3097 alias_for: "user-select", | 3097 alias_for: "user-select", |
| 3098 }, | 3098 }, |
| 3099 ], | 3099 ], |
| 3100 } | 3100 } |
| OLD | NEW |