| OLD | NEW |
| 1 // This file specifies all the CSS properties we support and the necessary | 1 // This file specifies all the CSS properties we support and the necessary |
| 2 // information for our code generation. The various supported arguments | 2 // information for our code generation. The various supported arguments |
| 3 // are described below with example usage | 3 // are described below with example usage |
| 4 | 4 |
| 5 // We should remove all those marked OBSOLETE now | 5 // We should remove all those marked OBSOLETE now |
| 6 // We should remove all those marked LAYOUT once we have custom layout | 6 // We should remove all those marked LAYOUT once we have custom layout |
| 7 // We should remove all those marked ANIMATIONS once we have an animation system | 7 // We should remove all those marked ANIMATIONS once we have an animation system |
| 8 | 8 |
| 9 // - alias_for=other-property | 9 // - alias_for=other-property |
| 10 // Properties specifying alias_for do not get their own enum and instead map | 10 // Properties specifying alias_for do not get their own enum and instead map |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 // ANIMATION | 362 // ANIMATION |
| 363 transition-duration custom_all | 363 transition-duration custom_all |
| 364 | 364 |
| 365 // ANIMATION | 365 // ANIMATION |
| 366 transition-property custom_all | 366 transition-property custom_all |
| 367 | 367 |
| 368 // ANIMATION | 368 // ANIMATION |
| 369 transition-timing-function custom_all | 369 transition-timing-function custom_all |
| 370 | 370 |
| 371 // OBSOLETE | 371 // OBSOLETE |
| 372 -webkit-user-drag | |
| 373 | |
| 374 // OBSOLETE | |
| 375 -webkit-user-modify inherited | 372 -webkit-user-modify inherited |
| 376 | 373 |
| 377 // OBSOLETE | 374 // OBSOLETE |
| 378 -webkit-user-select inherited | 375 -webkit-user-select inherited |
| 379 | 376 |
| 380 white-space inherited | 377 white-space inherited |
| 381 | 378 |
| 382 // LAYOUT | 379 // LAYOUT |
| 383 width animatable, initial=initialSize, converter=convertLengthSizing | 380 width animatable, initial=initialSize, converter=convertLengthSizing |
| 384 | 381 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color | 489 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color |
| 493 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color | 490 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color |
| 494 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color | 491 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color |
| 495 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" | 492 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" |
| 496 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius | 493 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius |
| 497 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color | 494 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color |
| 498 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color | 495 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color |
| 499 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r | 496 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r |
| 500 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z | 497 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z |
| 501 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 498 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
| OLD | NEW |