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

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

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ 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 1486 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 { 1497 {
1498 name: "offset-distance", 1498 name: "offset-distance",
1499 api_class: true, 1499 api_class: true,
1500 converter: "ConvertLength", 1500 converter: "ConvertLength",
1501 interpolable: true, 1501 interpolable: true,
1502 }, 1502 },
1503 { 1503 {
1504 name: "offset-path", 1504 name: "offset-path",
1505 api_class: true, 1505 api_class: true,
1506 api_methods: ["parseSingleValue"], 1506 api_methods: ["parseSingleValue"],
1507 converter: "ConvertPathOrNone", 1507 converter: "ConvertOffsetPath",
1508 }, 1508 },
1509 { 1509 {
1510 name: "offset-position", 1510 name: "offset-position",
1511 api_class: true, 1511 api_class: true,
1512 api_methods: ["parseSingleValue"], 1512 api_methods: ["parseSingleValue"],
1513 converter: "ConvertPositionOrAuto", 1513 converter: "ConvertPositionOrAuto",
1514 interpolable: true, 1514 interpolable: true,
1515 runtime_flag: "CSSOffsetPositionAnchor", 1515 runtime_flag: "CSSOffsetPositionAnchor",
1516 }, 1516 },
1517 { 1517 {
(...skipping 1794 matching lines...) Expand 10 before | Expand all | Expand 10 after
3312 { 3312 {
3313 name: "-webkit-transition-timing-function", 3313 name: "-webkit-transition-timing-function",
3314 alias_for: "transition-timing-function", 3314 alias_for: "transition-timing-function",
3315 }, 3315 },
3316 { 3316 {
3317 name: "-webkit-user-select", 3317 name: "-webkit-user-select",
3318 alias_for: "user-select", 3318 alias_for: "user-select",
3319 }, 3319 },
3320 ], 3320 ],
3321 } 3321 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698