| 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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 }, | 501 }, |
| 502 { | 502 { |
| 503 name: "HyphenationLimitLines", | 503 name: "HyphenationLimitLines", |
| 504 inherited: true, | 504 inherited: true, |
| 505 field_template: "storage_only", | 505 field_template: "storage_only", |
| 506 type_name: "short", | 506 type_name: "short", |
| 507 default_value: "-1", | 507 default_value: "-1", |
| 508 field_group: "rare-inherited", | 508 field_group: "rare-inherited", |
| 509 }, | 509 }, |
| 510 { | 510 { |
| 511 name: "EffectiveTouchAction", |
| 512 inherited: true, |
| 513 field_template: "storage_only", |
| 514 include_paths: ["platform/graphics/TouchAction.h"], |
| 515 type_name: "TouchAction", |
| 516 default_value: "TouchAction::kTouchActionAuto", |
| 517 field_group: "rare-inherited", |
| 518 }, |
| 519 { |
| 511 name: "TextEmphasisCustomMark", | 520 name: "TextEmphasisCustomMark", |
| 512 inherited: true, | 521 inherited: true, |
| 513 field_template: "external", | 522 field_template: "external", |
| 514 type_name: "AtomicString", | 523 type_name: "AtomicString", |
| 515 include_paths: ["platform/wtf/text/AtomicString.h"], | 524 include_paths: ["platform/wtf/text/AtomicString.h"], |
| 516 default_value: "AtomicString()", | 525 default_value: "AtomicString()", |
| 517 field_group: "rare-inherited", | 526 field_group: "rare-inherited", |
| 518 }, | 527 }, |
| 519 { | 528 { |
| 520 name: "AppliedTextDecorations", | 529 name: "AppliedTextDecorations", |
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 { | 1009 { |
| 1001 name: "GridAutoRepeatRowsType", | 1010 name: "GridAutoRepeatRowsType", |
| 1002 field_template: "keyword", | 1011 field_template: "keyword", |
| 1003 type_name: "AutoRepeatType", | 1012 type_name: "AutoRepeatType", |
| 1004 field_group: "rare-non-inherited->grid", | 1013 field_group: "rare-non-inherited->grid", |
| 1005 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], | 1014 keywords: ["no-auto-repeat", "auto-fill", "auto-fit"], |
| 1006 default_value: "no-auto-repeat", | 1015 default_value: "no-auto-repeat", |
| 1007 }, | 1016 }, |
| 1008 ], | 1017 ], |
| 1009 } | 1018 } |
| OLD | NEW |