| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 }, | 476 }, |
| 477 { | 477 { |
| 478 name: "HyphenationLimitLines", | 478 name: "HyphenationLimitLines", |
| 479 inherited: true, | 479 inherited: true, |
| 480 field_template: "storage_only", | 480 field_template: "storage_only", |
| 481 type_name: "short", | 481 type_name: "short", |
| 482 default_value: "-1", | 482 default_value: "-1", |
| 483 field_group: "rare-inherited", | 483 field_group: "rare-inherited", |
| 484 }, | 484 }, |
| 485 { | 485 { |
| 486 name: "EffectiveTouchAction", |
| 487 inherited: true, |
| 488 field_template: "storage_only", |
| 489 include_paths: ["platform/graphics/TouchAction.h"], |
| 490 type_name: "TouchAction", |
| 491 field_size: 6, |
| 492 default_value: "TouchAction::kTouchActionAuto", |
| 493 field_group: "rare-inherited", |
| 494 }, |
| 495 { |
| 486 name: "TextEmphasisCustomMark", | 496 name: "TextEmphasisCustomMark", |
| 487 inherited: true, | 497 inherited: true, |
| 488 field_template: "external", | 498 field_template: "external", |
| 489 type_name: "AtomicString", | 499 type_name: "AtomicString", |
| 490 include_paths: ["platform/wtf/text/AtomicString.h"], | 500 include_paths: ["platform/wtf/text/AtomicString.h"], |
| 491 default_value: "AtomicString()", | 501 default_value: "AtomicString()", |
| 492 field_group: "rare-inherited", | 502 field_group: "rare-inherited", |
| 493 }, | 503 }, |
| 494 { | 504 { |
| 495 name: "AppliedTextDecorations", | 505 name: "AppliedTextDecorations", |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 { | 959 { |
| 950 name: "GridAutoRepeatRowsType", | 960 name: "GridAutoRepeatRowsType", |
| 951 field_template: "keyword", | 961 field_template: "keyword", |
| 952 type_name: "AutoRepeatType", | 962 type_name: "AutoRepeatType", |
| 953 field_group: "rare-non-inherited->grid", | 963 field_group: "rare-non-inherited->grid", |
| 954 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], | 964 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], |
| 955 default_value: "no-auto-repeat", | 965 default_value: "no-auto-repeat", |
| 956 }, | 966 }, |
| 957 ], | 967 ], |
| 958 } | 968 } |
| OLD | NEW |