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

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

Issue 2949453002: Make EFlexDirection an enum class. (Closed)
Patch Set: Fix 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 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after
1209 interpolable: true, 1209 interpolable: true,
1210 type_name: "Length", 1210 type_name: "Length",
1211 field_template: "storage_only", 1211 field_template: "storage_only",
1212 default_value: "Length(kAuto)", 1212 default_value: "Length(kAuto)",
1213 field_group: "rare-non-inherited->flexible-box", 1213 field_group: "rare-non-inherited->flexible-box",
1214 }, 1214 },
1215 { 1215 {
1216 name: "flex-direction", 1216 name: "flex-direction",
1217 type_name: "EFlexDirection", 1217 type_name: "EFlexDirection",
1218 field_template: "storage_only", 1218 field_template: "storage_only",
1219 default_value: "kFlowRow", 1219 default_value: "EFlexDirection::kRow",
1220 field_size: 2, 1220 field_size: 2,
1221 field_group: "rare-non-inherited->flexible-box", 1221 field_group: "rare-non-inherited->flexible-box",
1222 }, 1222 },
1223 { 1223 {
1224 name: "flex-grow", 1224 name: "flex-grow",
1225 api_class: "CSSPropertyAPIFlexGrowOrShrink", 1225 api_class: "CSSPropertyAPIFlexGrowOrShrink",
1226 api_methods: ["parseSingleValue"], 1226 api_methods: ["parseSingleValue"],
1227 interpolable: true, 1227 interpolable: true,
1228 type_name: "float", 1228 type_name: "float",
1229 field_template: "storage_only", 1229 field_template: "storage_only",
(...skipping 2840 matching lines...) Expand 10 before | Expand all | Expand 10 after
4070 { 4070 {
4071 name: "-webkit-transition-timing-function", 4071 name: "-webkit-transition-timing-function",
4072 alias_for: "transition-timing-function", 4072 alias_for: "transition-timing-function",
4073 }, 4073 },
4074 { 4074 {
4075 name: "-webkit-user-select", 4075 name: "-webkit-user-select",
4076 alias_for: "user-select", 4076 alias_for: "user-select",
4077 }, 4077 },
4078 ], 4078 ],
4079 } 4079 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698