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

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

Issue 2896543002: Implements CSSPropertyAPI for the animation-name property. (Closed)
Patch Set: Change parseSingleValue method to take local context as input. 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 }, 315 },
316 { 316 {
317 name: "animation-iteration-count", 317 name: "animation-iteration-count",
318 custom_all: true, 318 custom_all: true,
319 keywords: ["infinite"], 319 keywords: ["infinite"],
320 priority: "Animation", 320 priority: "Animation",
321 separator: ",", 321 separator: ",",
322 }, 322 },
323 { 323 {
324 name: "animation-name", 324 name: "animation-name",
325 api_class: true,
326 api_methods: ["parseSingleValue"],
325 custom_all: true, 327 custom_all: true,
326 priority: "Animation", 328 priority: "Animation",
327 }, 329 },
328 { 330 {
329 name: "animation-play-state", 331 name: "animation-play-state",
330 custom_all: true, 332 custom_all: true,
331 priority: "Animation", 333 priority: "Animation",
332 }, 334 },
333 { 335 {
334 name: "animation-timing-function", 336 name: "animation-timing-function",
(...skipping 3188 matching lines...) Expand 10 before | Expand all | Expand 10 after
3523 { 3525 {
3524 name: "-webkit-transition-timing-function", 3526 name: "-webkit-transition-timing-function",
3525 alias_for: "transition-timing-function", 3527 alias_for: "transition-timing-function",
3526 }, 3528 },
3527 { 3529 {
3528 name: "-webkit-user-select", 3530 name: "-webkit-user-select",
3529 alias_for: "user-select", 3531 alias_for: "user-select",
3530 }, 3532 },
3531 ], 3533 ],
3532 } 3534 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698