| 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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 -webkit-user-drag | 396 -webkit-user-drag |
| 397 | 397 |
| 398 // OBSOLETE | 398 // OBSOLETE |
| 399 -webkit-user-modify inherited | 399 -webkit-user-modify inherited |
| 400 | 400 |
| 401 // OBSOLETE | 401 // OBSOLETE |
| 402 -webkit-user-select inherited | 402 -webkit-user-select inherited |
| 403 | 403 |
| 404 white-space inherited | 404 white-space inherited |
| 405 | 405 |
| 406 // OBSOLETE | |
| 407 widows animatable, inherited, type_name=short, custom_all | |
| 408 | |
| 409 // LAYOUT | 406 // LAYOUT |
| 410 width animatable, initial=initialSize, converter=convertLengthSizing | 407 width animatable, initial=initialSize, converter=convertLengthSizing |
| 411 | 408 |
| 412 // ANIMATION | 409 // ANIMATION |
| 413 will-change custom_all | 410 will-change custom_all |
| 414 | 411 |
| 415 word-break inherited | 412 word-break inherited |
| 416 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing | 413 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing |
| 417 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 414 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 418 word-wrap inherited, name_for_methods=OverflowWrap | 415 word-wrap inherited, name_for_methods=OverflowWrap |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color | 523 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color |
| 527 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color | 524 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color |
| 528 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color | 525 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color |
| 529 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" | 526 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" |
| 530 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius | 527 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius |
| 531 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color | 528 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color |
| 532 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color | 529 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color |
| 533 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r | 530 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r |
| 534 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z | 531 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z |
| 535 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 532 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
| OLD | NEW |