Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: third_party/WebKit/Source/core/css/ComputedStyleExtraFields.json5

Issue 2916563003: Compute effective touch action in StyleAdjuster. (Closed)
Patch Set: Iframe touch action updates trigger descendant style recalc. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 }, 519 },
520 { 520 {
521 name: "HyphenationLimitLines", 521 name: "HyphenationLimitLines",
522 inherited: true, 522 inherited: true,
523 field_template: "storage_only", 523 field_template: "storage_only",
524 type_name: "short", 524 type_name: "short",
525 default_value: "-1", 525 default_value: "-1",
526 field_group: "rare-inherited", 526 field_group: "rare-inherited",
527 }, 527 },
528 { 528 {
529 name: "EffectiveTouchAction",
530 inherited: true,
531 field_template: "storage_only",
532 include_paths: ["platform/graphics/TouchAction.h"],
533 type_name: "TouchAction",
534 default_value: "TouchAction::kTouchActionAuto",
535 field_group: "rare-inherited",
536 },
537 {
529 name: "TextEmphasisCustomMark", 538 name: "TextEmphasisCustomMark",
530 inherited: true, 539 inherited: true,
531 field_template: "external", 540 field_template: "external",
532 type_name: "AtomicString", 541 type_name: "AtomicString",
533 include_paths: ["platform/wtf/text/AtomicString.h"], 542 include_paths: ["platform/wtf/text/AtomicString.h"],
534 default_value: "AtomicString()", 543 default_value: "AtomicString()",
535 field_group: "rare-inherited", 544 field_group: "rare-inherited",
536 }, 545 },
537 { 546 {
538 name: "AppliedTextDecorations", 547 name: "AppliedTextDecorations",
(...skipping 10 matching lines...) Expand all
549 inherited: true, 558 inherited: true,
550 field_template: "storage_only", 559 field_template: "storage_only",
551 type_name: "StyleInheritedVariables", 560 type_name: "StyleInheritedVariables",
552 include_paths: ["core/style/StyleInheritedVariables.h"], 561 include_paths: ["core/style/StyleInheritedVariables.h"],
553 default_value: "nullptr", 562 default_value: "nullptr",
554 wrapper_pointer_name: "RefPtr", 563 wrapper_pointer_name: "RefPtr",
555 field_group: "rare-inherited", 564 field_group: "rare-inherited",
556 }, 565 },
557 ], 566 ],
558 } 567 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698