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

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

Issue 2909233002: Generate getters/setters for TextSizeAdjust. (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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2108 matching lines...) Expand 10 before | Expand all | Expand 10 after
2119 default_value: "nullptr", 2119 default_value: "nullptr",
2120 field_group: "rare-inherited", 2120 field_group: "rare-inherited",
2121 }, 2121 },
2122 { 2122 {
2123 name: "text-size-adjust", 2123 name: "text-size-adjust",
2124 api_class: true, 2124 api_class: true,
2125 api_methods: ["parseSingleValue"], 2125 api_methods: ["parseSingleValue"],
2126 converter: "ConvertTextSizeAdjust", 2126 converter: "ConvertTextSizeAdjust",
2127 inherited: true, 2127 inherited: true,
2128 getter: "GetTextSizeAdjust", 2128 getter: "GetTextSizeAdjust",
2129 field_template: "storage_only", 2129 field_template: "external",
2130 type_name: "TextSizeAdjust", 2130 type_name: "TextSizeAdjust",
2131 include_paths: ["core/style/TextSizeAdjust.h"], 2131 include_paths: ["core/style/TextSizeAdjust.h"],
2132 default_value: "TextSizeAdjust::AdjustAuto()", 2132 default_value: "TextSizeAdjust::AdjustAuto()",
2133 field_group: "rare-inherited", 2133 field_group: "rare-inherited",
2134 }, 2134 },
2135 { 2135 {
2136 name: "text-transform", 2136 name: "text-transform",
2137 independent: true, 2137 independent: true,
2138 inherited: true, 2138 inherited: true,
2139 default_value: "none", 2139 default_value: "none",
(...skipping 1385 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698