| OLD | NEW |
| 1 { | 1 { |
| 2 // This file specifies fields in ComputedStyle that we would like to | 2 // This file specifies fields in ComputedStyle that we would like to |
| 3 // generate, but are not CSS properties. | 3 // generate, but are not CSS properties. |
| 4 | 4 |
| 5 parameters: { | 5 parameters: { |
| 6 // If the field has_custom_compare_and_copy, then it does not appear in | 6 // If the field has_custom_compare_and_copy, then it does not appear in |
| 7 // ComputedStyle::operator== and ComputedStyle::CopyNonInheritedFromCached. | 7 // ComputedStyle::operator== and ComputedStyle::CopyNonInheritedFromCached. |
| 8 has_custom_compare_and_copy: { | 8 has_custom_compare_and_copy: { |
| 9 default: false, | 9 default: false, |
| 10 }, | 10 }, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 default_value: "true", | 235 default_value: "true", |
| 236 }, | 236 }, |
| 237 { | 237 { |
| 238 name: "BoxDecorationBreak", | 238 name: "BoxDecorationBreak", |
| 239 field_template: "storage_only", | 239 field_template: "storage_only", |
| 240 type_name: "EBoxDecorationBreak", | 240 type_name: "EBoxDecorationBreak", |
| 241 field_size: 1, | 241 field_size: 1, |
| 242 field_group: "box", | 242 field_group: "box", |
| 243 default_value: "EBoxDecorationBreak::kSlice", | 243 default_value: "EBoxDecorationBreak::kSlice", |
| 244 }, | 244 }, |
| 245 { | |
| 246 name: "BoxSizing", | |
| 247 field_template: "storage_only", | |
| 248 type_name: "EBoxSizing", | |
| 249 field_size: 1, | |
| 250 field_group: "box", | |
| 251 default_value: "EBoxSizing::kContentBox", | |
| 252 }, | |
| 253 ], | 245 ], |
| 254 } | 246 } |
| OLD | NEW |