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

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

Issue 2936113003: Make EIsolation an enum class. (Closed)
Patch Set: Fix code 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 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 inherited: true, 1362 inherited: true,
1363 name_for_methods: "RespectImageOrientation", 1363 name_for_methods: "RespectImageOrientation",
1364 runtime_flag: "ImageOrientation", 1364 runtime_flag: "ImageOrientation",
1365 }, 1365 },
1366 { 1366 {
1367 name: "isolation", 1367 name: "isolation",
1368 type_name: "EIsolation", 1368 type_name: "EIsolation",
1369 field_template: "storage_only", 1369 field_template: "storage_only",
1370 field_group: "rare-non-inherited", 1370 field_group: "rare-non-inherited",
1371 field_size: 1, 1371 field_size: 1,
1372 default_value: "kIsolationAuto", 1372 default_value: "EIsolation::kAuto",
1373 }, 1373 },
1374 { 1374 {
1375 name: "justify-content", 1375 name: "justify-content",
1376 api_class: "CSSPropertyAPIAlignOrJustifyContent", 1376 api_class: "CSSPropertyAPIAlignOrJustifyContent",
1377 api_methods: ["parseSingleValue"], 1377 api_methods: ["parseSingleValue"],
1378 converter: "ConvertContentAlignmentData", 1378 converter: "ConvertContentAlignmentData",
1379 initial: "InitialContentAlignment", 1379 initial: "InitialContentAlignment",
1380 field_template: "storage_only", 1380 field_template: "storage_only",
1381 type_name: "StyleContentAlignmentData", 1381 type_name: "StyleContentAlignmentData",
1382 field_group: "rare-non-inherited", 1382 field_group: "rare-non-inherited",
(...skipping 2333 matching lines...) Expand 10 before | Expand all | Expand 10 after
3716 { 3716 {
3717 name: "-webkit-transition-timing-function", 3717 name: "-webkit-transition-timing-function",
3718 alias_for: "transition-timing-function", 3718 alias_for: "transition-timing-function",
3719 }, 3719 },
3720 { 3720 {
3721 name: "-webkit-user-select", 3721 name: "-webkit-user-select",
3722 alias_for: "user-select", 3722 alias_for: "user-select",
3723 }, 3723 },
3724 ], 3724 ],
3725 } 3725 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h ('k') | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698