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

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

Issue 2899663003: Make TextEmphasisFill an enum class. (Closed)
Patch Set: Rebase 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 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 type_name: "bool", 403 type_name: "bool",
404 default_value: "true", 404 default_value: "true",
405 field_size: 1, 405 field_size: 1,
406 field_group: "rare-inherited", 406 field_group: "rare-inherited",
407 }, 407 },
408 { 408 {
409 name: "TextEmphasisFill", 409 name: "TextEmphasisFill",
410 inherited: true, 410 inherited: true,
411 field_template: "storage_only", 411 field_template: "storage_only",
412 type_name: "TextEmphasisFill", 412 type_name: "TextEmphasisFill",
413 default_value: "kTextEmphasisFillFilled", 413 default_value: "TextEmphasisFill::kFilled",
414 field_size: 1, 414 field_size: 1,
415 field_group: "rare-inherited", 415 field_group: "rare-inherited",
416 }, 416 },
417 { 417 {
418 name: "TextEmphasisMark", 418 name: "TextEmphasisMark",
419 inherited: true, 419 inherited: true,
420 field_template: "storage_only", 420 field_template: "storage_only",
421 type_name: "TextEmphasisMark", 421 type_name: "TextEmphasisMark",
422 default_value: "kTextEmphasisMarkNone", 422 default_value: "kTextEmphasisMarkNone",
423 field_size: 3, 423 field_size: 3,
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 name: "Variables", 535 name: "Variables",
536 inherited: true, 536 inherited: true,
537 field_template: "storage_only", 537 field_template: "storage_only",
538 field_type_path: "core/style/StyleInheritedVariables", 538 field_type_path: "core/style/StyleInheritedVariables",
539 default_value: "nullptr", 539 default_value: "nullptr",
540 wrapper_pointer_name: "RefPtr", 540 wrapper_pointer_name: "RefPtr",
541 field_group: "rare-inherited", 541 field_group: "rare-inherited",
542 }, 542 },
543 ], 543 ],
544 } 544 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698