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

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

Issue 2827003002: CSS Motion Path: delete implementation of motion-path property (Closed)
Patch Set: Created 3 years, 8 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 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1364 { 1364 {
1365 name: "mix-blend-mode", 1365 name: "mix-blend-mode",
1366 name_for_methods: "BlendMode", 1366 name_for_methods: "BlendMode",
1367 type_name: "blink::WebBlendMode", 1367 type_name: "blink::WebBlendMode",
1368 }, 1368 },
1369 { 1369 {
1370 name: "motion-offset", 1370 name: "motion-offset",
1371 alias_for: "offset-distance", 1371 alias_for: "offset-distance",
1372 }, 1372 },
1373 { 1373 {
1374 name: "motion-path",
1375 alias_for: "offset-path",
1376 },
1377 {
1378 name: "motion-rotation", 1374 name: "motion-rotation",
1379 alias_for: "offset-rotation", 1375 alias_for: "offset-rotation",
1380 }, 1376 },
1381 { 1377 {
1382 name: "object-fit", 1378 name: "object-fit",
1383 type_name: "ObjectFit", 1379 type_name: "ObjectFit",
1384 }, 1380 },
1385 { 1381 {
1386 name: "object-position", 1382 name: "object-position",
1387 converter: "ConvertPosition", 1383 converter: "ConvertPosition",
(...skipping 1799 matching lines...) Expand 10 before | Expand all | Expand 10 after
3187 { 3183 {
3188 name: "-webkit-transition-timing-function", 3184 name: "-webkit-transition-timing-function",
3189 alias_for: "transition-timing-function", 3185 alias_for: "transition-timing-function",
3190 }, 3186 },
3191 { 3187 {
3192 name: "-webkit-user-select", 3188 name: "-webkit-user-select",
3193 alias_for: "user-select", 3189 alias_for: "user-select",
3194 }, 3190 },
3195 ], 3191 ],
3196 } 3192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698