| 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 converter: "ConvertLengthOrAuto", | 1208 converter: "ConvertLengthOrAuto", |
| 1209 interpolable: true, | 1209 interpolable: true, |
| 1210 type_name: "Length", | 1210 type_name: "Length", |
| 1211 field_template: "storage_only", | 1211 field_template: "storage_only", |
| 1212 default_value: "Length(kAuto)", | 1212 default_value: "Length(kAuto)", |
| 1213 field_group: "rare-non-inherited->flexible-box", | 1213 field_group: "rare-non-inherited->flexible-box", |
| 1214 }, | 1214 }, |
| 1215 { | 1215 { |
| 1216 name: "flex-direction", | 1216 name: "flex-direction", |
| 1217 type_name: "EFlexDirection", | 1217 type_name: "EFlexDirection", |
| 1218 field_template: "keyword", | 1218 field_template: "storage_only", |
| 1219 default_value: "row", | 1219 default_value: "EFlexDirection::kRow", |
| 1220 field_size: 2, |
| 1220 field_group: "rare-non-inherited->flexible-box", | 1221 field_group: "rare-non-inherited->flexible-box", |
| 1221 keywords: ["row", "row-reverse", "column", "column-reverse"], | |
| 1222 }, | 1222 }, |
| 1223 { | 1223 { |
| 1224 name: "flex-grow", | 1224 name: "flex-grow", |
| 1225 api_class: "CSSPropertyAPIFlexGrowOrShrink", | 1225 api_class: "CSSPropertyAPIFlexGrowOrShrink", |
| 1226 api_methods: ["parseSingleValue"], | 1226 api_methods: ["parseSingleValue"], |
| 1227 interpolable: true, | 1227 interpolable: true, |
| 1228 type_name: "float", | 1228 type_name: "float", |
| 1229 field_template: "storage_only", | 1229 field_template: "storage_only", |
| 1230 default_value: "0.0f", | 1230 default_value: "0.0f", |
| 1231 field_group: "rare-non-inherited->flexible-box", | 1231 field_group: "rare-non-inherited->flexible-box", |
| (...skipping 2862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4094 { | 4094 { |
| 4095 name: "-webkit-transition-timing-function", | 4095 name: "-webkit-transition-timing-function", |
| 4096 alias_for: "transition-timing-function", | 4096 alias_for: "transition-timing-function", |
| 4097 }, | 4097 }, |
| 4098 { | 4098 { |
| 4099 name: "-webkit-user-select", | 4099 name: "-webkit-user-select", |
| 4100 alias_for: "user-select", | 4100 alias_for: "user-select", |
| 4101 }, | 4101 }, |
| 4102 ], | 4102 ], |
| 4103 } | 4103 } |
| OLD | NEW |