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

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

Issue 2942393002: Generate enum/getters/setters/mappings for flex-direction (Closed)
Patch Set: Retry 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 converter: "ConvertLengthOrAuto", 1208 converter: "ConvertLengthOrAuto",
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: "keyword",
1219 default_value: "EFlexDirection::kRow", 1219 default_value: "row",
1220 field_size: 2,
1221 field_group: "rare-non-inherited->flexible-box", 1220 field_group: "rare-non-inherited->flexible-box",
1221 keywords: ["row", "row-reverse", "column", "column-reverse"],
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",
1230 default_value: "0.0f", 1230 default_value: "0.0f",
1231 field_group: "rare-non-inherited->flexible-box", 1231 field_group: "rare-non-inherited->flexible-box",
(...skipping 2869 matching lines...) Expand 10 before | Expand all | Expand 10 after
4101 { 4101 {
4102 name: "-webkit-transition-timing-function", 4102 name: "-webkit-transition-timing-function",
4103 alias_for: "transition-timing-function", 4103 alias_for: "transition-timing-function",
4104 }, 4104 },
4105 { 4105 {
4106 name: "-webkit-user-select", 4106 name: "-webkit-user-select",
4107 alias_for: "user-select", 4107 alias_for: "user-select",
4108 }, 4108 },
4109 ], 4109 ],
4110 } 4110 }
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