| 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 true, we do not include this field in ComputedStyleBase::InheritFrom | 6 // If true, we do not include this field in ComputedStyleBase::InheritFrom |
| 7 // and ComputedStyleBase::CopyNonInheritedFromCached. | 7 // and ComputedStyleBase::CopyNonInheritedFromCached. |
| 8 custom_copy: { | 8 custom_copy: { |
| 9 default: false, | 9 default: false, |
| 10 }, | 10 }, |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 }, | 510 }, |
| 511 { | 511 { |
| 512 name: "HyphenationLimitLines", | 512 name: "HyphenationLimitLines", |
| 513 inherited: true, | 513 inherited: true, |
| 514 field_template: "storage_only", | 514 field_template: "storage_only", |
| 515 type_name: "short", | 515 type_name: "short", |
| 516 default_value: "-1", | 516 default_value: "-1", |
| 517 field_group: "rare-inherited", | 517 field_group: "rare-inherited", |
| 518 }, | 518 }, |
| 519 { | 519 { |
| 520 name: "EffectiveTouchAction", |
| 521 inherited: true, |
| 522 field_template: "storage_only", |
| 523 include_paths: ["platform/graphics/TouchAction.h"], |
| 524 type_name: "TouchAction", |
| 525 default_value: "TouchAction::kTouchActionAuto", |
| 526 field_group: "rare-inherited", |
| 527 }, |
| 528 { |
| 520 name: "TextEmphasisCustomMark", | 529 name: "TextEmphasisCustomMark", |
| 521 inherited: true, | 530 inherited: true, |
| 522 field_template: "external", | 531 field_template: "external", |
| 523 type_name: "AtomicString", | 532 type_name: "AtomicString", |
| 524 include_paths: ["platform/wtf/text/AtomicString.h"], | 533 include_paths: ["platform/wtf/text/AtomicString.h"], |
| 525 default_value: "AtomicString()", | 534 default_value: "AtomicString()", |
| 526 field_group: "rare-inherited", | 535 field_group: "rare-inherited", |
| 527 }, | 536 }, |
| 528 { | 537 { |
| 529 name: "AppliedTextDecorations", | 538 name: "AppliedTextDecorations", |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 { | 1028 { |
| 1020 name: "GridAutoRepeatRowsType", | 1029 name: "GridAutoRepeatRowsType", |
| 1021 field_template: "keyword", | 1030 field_template: "keyword", |
| 1022 type_name: "AutoRepeatType", | 1031 type_name: "AutoRepeatType", |
| 1023 field_group: "rare-non-inherited->grid", | 1032 field_group: "rare-non-inherited->grid", |
| 1024 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], | 1033 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], |
| 1025 default_value: "no-auto-repeat", | 1034 default_value: "no-auto-repeat", |
| 1026 }, | 1035 }, |
| 1027 ], | 1036 ], |
| 1028 } | 1037 } |
| OLD | NEW |