| 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 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1359 api_class: true, | 1359 api_class: true, |
| 1360 api_methods: ["parseSingleValue"], | 1360 api_methods: ["parseSingleValue"], |
| 1361 converter: "ConvertImageOrientation", | 1361 converter: "ConvertImageOrientation", |
| 1362 inherited: true, | 1362 inherited: true, |
| 1363 name_for_methods: "RespectImageOrientation", | 1363 name_for_methods: "RespectImageOrientation", |
| 1364 runtime_flag: "ImageOrientation", | 1364 runtime_flag: "ImageOrientation", |
| 1365 }, | 1365 }, |
| 1366 { | 1366 { |
| 1367 name: "isolation", | 1367 name: "isolation", |
| 1368 type_name: "EIsolation", | 1368 type_name: "EIsolation", |
| 1369 field_template: "storage_only", | 1369 field_template: "keyword", |
| 1370 keywords: ["auto", "isolate"], |
| 1370 field_group: "rare-non-inherited", | 1371 field_group: "rare-non-inherited", |
| 1371 field_size: 1, | 1372 field_size: 1, |
| 1372 default_value: "EIsolation::kAuto", | 1373 default_value: "auto", |
| 1373 }, | 1374 }, |
| 1374 { | 1375 { |
| 1375 name: "justify-content", | 1376 name: "justify-content", |
| 1376 api_class: "CSSPropertyAPIAlignOrJustifyContent", | 1377 api_class: "CSSPropertyAPIAlignOrJustifyContent", |
| 1377 api_methods: ["parseSingleValue"], | 1378 api_methods: ["parseSingleValue"], |
| 1378 converter: "ConvertContentAlignmentData", | 1379 converter: "ConvertContentAlignmentData", |
| 1379 initial: "InitialContentAlignment", | 1380 initial: "InitialContentAlignment", |
| 1380 field_template: "storage_only", | 1381 field_template: "storage_only", |
| 1381 type_name: "StyleContentAlignmentData", | 1382 type_name: "StyleContentAlignmentData", |
| 1382 field_group: "rare-non-inherited", | 1383 field_group: "rare-non-inherited", |
| (...skipping 2333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3716 { | 3717 { |
| 3717 name: "-webkit-transition-timing-function", | 3718 name: "-webkit-transition-timing-function", |
| 3718 alias_for: "transition-timing-function", | 3719 alias_for: "transition-timing-function", |
| 3719 }, | 3720 }, |
| 3720 { | 3721 { |
| 3721 name: "-webkit-user-select", | 3722 name: "-webkit-user-select", |
| 3722 alias_for: "user-select", | 3723 alias_for: "user-select", |
| 3723 }, | 3724 }, |
| 3724 ], | 3725 ], |
| 3725 } | 3726 } |
| OLD | NEW |