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

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

Issue 2896543002: Implements CSSPropertyAPI for the animation-name property. (Closed)
Patch Set: 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 }, 307 },
308 { 308 {
309 name: "animation-iteration-count", 309 name: "animation-iteration-count",
310 custom_all: true, 310 custom_all: true,
311 keywords: ["infinite"], 311 keywords: ["infinite"],
312 priority: "Animation", 312 priority: "Animation",
313 separator: ",", 313 separator: ",",
314 }, 314 },
315 { 315 {
316 name: "animation-name", 316 name: "animation-name",
317 api_class: true,
318 api_methods: ["parseSingleValue"],
317 custom_all: true, 319 custom_all: true,
318 priority: "Animation", 320 priority: "Animation",
319 }, 321 },
320 { 322 {
321 name: "animation-play-state", 323 name: "animation-play-state",
322 custom_all: true, 324 custom_all: true,
323 priority: "Animation", 325 priority: "Animation",
324 }, 326 },
325 { 327 {
326 name: "animation-timing-function", 328 name: "animation-timing-function",
(...skipping 3016 matching lines...) Expand 10 before | Expand all | Expand 10 after
3343 { 3345 {
3344 name: "-webkit-transition-timing-function", 3346 name: "-webkit-transition-timing-function",
3345 alias_for: "transition-timing-function", 3347 alias_for: "transition-timing-function",
3346 }, 3348 },
3347 { 3349 {
3348 name: "-webkit-user-select", 3350 name: "-webkit-user-select",
3349 alias_for: "user-select", 3351 alias_for: "user-select",
3350 }, 3352 },
3351 ], 3353 ],
3352 } 3354 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698