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

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

Issue 2692383004: Support animating CSS property "order" (Closed)
Patch Set: orderorder Created 3 years, 10 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 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 name: "opacity", 1354 name: "opacity",
1355 api_class: "CSSPropertyAPIOpacity", 1355 api_class: "CSSPropertyAPIOpacity",
1356 api_methods: ["parseSingleValue"], 1356 api_methods: ["parseSingleValue"],
1357 interpolable: true, 1357 interpolable: true,
1358 type_name: "float", 1358 type_name: "float",
1359 }, 1359 },
1360 { 1360 {
1361 name: "order", 1361 name: "order",
1362 api_class: true, 1362 api_class: true,
1363 api_methods: ["parseSingleValue"], 1363 api_methods: ["parseSingleValue"],
1364 interpolable: true,
1364 type_name: "int", 1365 type_name: "int",
1365 }, 1366 },
1366 { 1367 {
1367 name: "orphans", 1368 name: "orphans",
1368 inherited: true, 1369 inherited: true,
1369 interpolable: true, 1370 interpolable: true,
1370 type_name: "short", 1371 type_name: "short",
1371 }, 1372 },
1372 { 1373 {
1373 name: "outline-color", 1374 name: "outline-color",
(...skipping 1699 matching lines...) Expand 10 before | Expand all | Expand 10 after
3073 { 3074 {
3074 name: "-webkit-transition-timing-function", 3075 name: "-webkit-transition-timing-function",
3075 alias_for: "transition-timing-function", 3076 alias_for: "transition-timing-function",
3076 }, 3077 },
3077 { 3078 {
3078 name: "-webkit-user-select", 3079 name: "-webkit-user-select",
3079 alias_for: "user-select", 3080 alias_for: "user-select",
3080 }, 3081 },
3081 ], 3082 ],
3082 } 3083 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698