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

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

Issue 2840943003: CSS Motion Path: delete implementation of motion-rotation property (Closed)
Patch Set: rename Created 3 years, 7 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 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 { 1387 {
1388 name: "mix-blend-mode", 1388 name: "mix-blend-mode",
1389 name_for_methods: "BlendMode", 1389 name_for_methods: "BlendMode",
1390 type_name: "blink::WebBlendMode", 1390 type_name: "blink::WebBlendMode",
1391 }, 1391 },
1392 { 1392 {
1393 name: "motion-offset", 1393 name: "motion-offset",
1394 alias_for: "offset-distance", 1394 alias_for: "offset-distance",
1395 }, 1395 },
1396 { 1396 {
1397 name: "motion-rotation",
1398 alias_for: "offset-rotation",
1399 },
1400 {
1401 name: "object-fit", 1397 name: "object-fit",
1402 type_name: "ObjectFit", 1398 type_name: "ObjectFit",
1403 }, 1399 },
1404 { 1400 {
1405 name: "object-position", 1401 name: "object-position",
1406 converter: "ConvertPosition", 1402 converter: "ConvertPosition",
1407 interpolable: true, 1403 interpolable: true,
1408 }, 1404 },
1409 { 1405 {
1410 name: "offset-anchor", 1406 name: "offset-anchor",
(...skipping 1816 matching lines...) Expand 10 before | Expand all | Expand 10 after
3227 { 3223 {
3228 name: "-webkit-transition-timing-function", 3224 name: "-webkit-transition-timing-function",
3229 alias_for: "transition-timing-function", 3225 alias_for: "transition-timing-function",
3230 }, 3226 },
3231 { 3227 {
3232 name: "-webkit-user-select", 3228 name: "-webkit-user-select",
3233 alias_for: "user-select", 3229 alias_for: "user-select",
3234 }, 3230 },
3235 ], 3231 ],
3236 } 3232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698