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

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

Issue 2914753002: Make TextCombine an enum class. (Closed)
Patch Set: 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 all the CSS properties we support and the necessary 2 // This file specifies all the CSS properties we support and the necessary
3 // information for our code generation. The various supported arguments 3 // information for our code generation. The various supported arguments
4 // are described below with example usage 4 // are described below with example usage
5 5
6 parameters: { 6 parameters: {
7 // - alias_for: "other-property" 7 // - alias_for: "other-property"
8 // Properties specifying alias_for should be virtually identical to the 8 // Properties specifying alias_for should be virtually identical to the
9 // properties they alias. Minor parsing differences are allowed as long as 9 // properties they alias. Minor parsing differences are allowed as long as
10 // the CSSValues created are of the same format of the aliased property. 10 // the CSSValues created are of the same format of the aliased property.
(...skipping 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after
2025 name: "text-anchor", 2025 name: "text-anchor",
2026 inherited: true, 2026 inherited: true,
2027 svg: true, 2027 svg: true,
2028 }, 2028 },
2029 { 2029 {
2030 name: "text-combine-upright", 2030 name: "text-combine-upright",
2031 inherited: true, 2031 inherited: true,
2032 name_for_methods: "TextCombine", 2032 name_for_methods: "TextCombine",
2033 field_template: "storage_only", 2033 field_template: "storage_only",
2034 type_name: "TextCombine", 2034 type_name: "TextCombine",
2035 default_value: "kTextCombineNone", 2035 default_value: "TextCombine::kNone",
2036 field_size: 1, 2036 field_size: 1,
2037 field_group: "rare-inherited", 2037 field_group: "rare-inherited",
2038 }, 2038 },
2039 // FIXME: We shouldn't switch between shorthand/not shorthand based on a run time flag 2039 // FIXME: We shouldn't switch between shorthand/not shorthand based on a run time flag
2040 { 2040 {
2041 name: "text-decoration", 2041 name: "text-decoration",
2042 api_class: true, 2042 api_class: true,
2043 longhands: "text-decoration-line;text-decoration-style;text-decoration-col or", 2043 longhands: "text-decoration-line;text-decoration-style;text-decoration-col or",
2044 use_handlers_for: "CSSPropertyTextDecorationLine", 2044 use_handlers_for: "CSSPropertyTextDecorationLine",
2045 }, 2045 },
(...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after
3525 { 3525 {
3526 name: "-webkit-transition-timing-function", 3526 name: "-webkit-transition-timing-function",
3527 alias_for: "transition-timing-function", 3527 alias_for: "transition-timing-function",
3528 }, 3528 },
3529 { 3529 {
3530 name: "-webkit-user-select", 3530 name: "-webkit-user-select",
3531 alias_for: "user-select", 3531 alias_for: "user-select",
3532 }, 3532 },
3533 ], 3533 ],
3534 } 3534 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698