| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |