| 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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1234 name: "height", | 1234 name: "height", |
| 1235 api_class: "CSSPropertyAPIWidthOrHeight", | 1235 api_class: "CSSPropertyAPIWidthOrHeight", |
| 1236 converter: "ConvertLengthSizing", | 1236 converter: "ConvertLengthSizing", |
| 1237 is_descriptor: true, | 1237 is_descriptor: true, |
| 1238 interpolable: true, | 1238 interpolable: true, |
| 1239 keywords: ["auto", "fit-content", "min-content", "max-content"], | 1239 keywords: ["auto", "fit-content", "min-content", "max-content"], |
| 1240 supports_percentage: true, | 1240 supports_percentage: true, |
| 1241 typedom_types: ["Length"], | 1241 typedom_types: ["Length"], |
| 1242 field_template: "external", | 1242 field_template: "external", |
| 1243 field_type_path: "platform/Length", | 1243 field_type_path: "platform/Length", |
| 1244 field_group: "box", | 1244 field_group: "naina", |
| 1245 default_value: "Length()", | 1245 default_value: "Length()", |
| 1246 }, | 1246 }, |
| 1247 { | 1247 { |
| 1248 name: "hyphens", | 1248 name: "hyphens", |
| 1249 inherited: true, | 1249 inherited: true, |
| 1250 runtime_flag: "CSSHyphens", | 1250 runtime_flag: "CSSHyphens", |
| 1251 type_name: "Hyphens", | 1251 type_name: "Hyphens", |
| 1252 }, | 1252 }, |
| 1253 { | 1253 { |
| 1254 name: "image-rendering", | 1254 name: "image-rendering", |
| (...skipping 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3343 { | 3343 { |
| 3344 name: "-webkit-transition-timing-function", | 3344 name: "-webkit-transition-timing-function", |
| 3345 alias_for: "transition-timing-function", | 3345 alias_for: "transition-timing-function", |
| 3346 }, | 3346 }, |
| 3347 { | 3347 { |
| 3348 name: "-webkit-user-select", | 3348 name: "-webkit-user-select", |
| 3349 alias_for: "user-select", | 3349 alias_for: "user-select", |
| 3350 }, | 3350 }, |
| 3351 ], | 3351 ], |
| 3352 } | 3352 } |
| OLD | NEW |