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

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

Issue 2889323002: [DEMO CL - not for landing] Change height property's group from box to naina (Closed)
Patch Set: Assert for correct size Created 3 years, 7 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.cpp » ('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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 name: "height", 1234 name: "height",
1235 api_class: "CSSPropertyAPIWidthOrHeight", 1235 api_class: "CSSPropertyAPIWidthOrHeight",
1236 converter: "ConvertLengthSizing", 1236 converter: "ConvertLengthSizing",
1237 is_descriptor: true, 1237 is_descriptor: true,
1238 interpolable: true, 1238 interpolable: true,
1239 keywords: ["auto", "fit-content", "min-content", "max-content"], 1239 keywords: ["auto", "fit-content", "min-content", "max-content"],
1240 supports_percentage: true, 1240 supports_percentage: true,
1241 typedom_types: ["Length"], 1241 typedom_types: ["Length"],
1242 field_template: "external", 1242 field_template: "external",
1243 field_type_path: "platform/Length", 1243 field_type_path: "platform/Length",
1244 field_group: "box", 1244 field_group: "naina",
1245 default_value: "Length()", 1245 default_value: "Length()",
1246 }, 1246 },
1247 { 1247 {
1248 name: "hyphens", 1248 name: "hyphens",
1249 inherited: true, 1249 inherited: true,
1250 runtime_flag: "CSSHyphens", 1250 runtime_flag: "CSSHyphens",
1251 type_name: "Hyphens", 1251 type_name: "Hyphens",
1252 }, 1252 },
1253 { 1253 {
1254 name: "image-rendering", 1254 name: "image-rendering",
(...skipping 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after
3343 { 3343 {
3344 name: "-webkit-transition-timing-function", 3344 name: "-webkit-transition-timing-function",
3345 alias_for: "transition-timing-function", 3345 alias_for: "transition-timing-function",
3346 }, 3346 },
3347 { 3347 {
3348 name: "-webkit-user-select", 3348 name: "-webkit-user-select",
3349 alias_for: "user-select", 3349 alias_for: "user-select",
3350 }, 3350 },
3351 ], 3351 ],
3352 } 3352 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698