| 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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color | 548 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color |
| 549 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color | 549 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color |
| 550 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color | 550 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color |
| 551 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" | 551 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" |
| 552 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius | 552 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius |
| 553 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color | 553 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color |
| 554 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color | 554 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color |
| 555 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r | 555 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r |
| 556 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z | 556 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z |
| 557 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 557 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
| 558 | |
| 559 // Aliases; these map to the same CSSPropertyID | |
| 560 // ALL OBSOLETE | |
| 561 -epub-caption-side alias_for=caption-side | |
| 562 -epub-text-emphasis alias_for=-webkit-text-emphasis | |
| 563 -epub-text-emphasis-color alias_for=-webkit-text-emphasis-color | |
| 564 -epub-text-emphasis-style alias_for=-webkit-text-emphasis-style | |
| 565 -epub-text-orientation alias_for=-webkit-text-orientation | |
| 566 -epub-word-break alias_for=word-break | |
| 567 -webkit-align-content alias_for=align-content | |
| 568 -webkit-align-items alias_for=align-items | |
| 569 -webkit-align-self alias_for=align-self | |
| 570 -webkit-border-bottom-left-radius alias_for=border-bottom-left-radius | |
| 571 -webkit-border-bottom-right-radius alias_for=border-bottom-right-radius | |
| 572 -webkit-border-top-left-radius alias_for=border-top-left-radius | |
| 573 -webkit-border-top-right-radius alias_for=border-top-right-radius | |
| 574 -webkit-box-sizing alias_for=box-sizing | |
| 575 -webkit-flex alias_for=flex | |
| 576 -webkit-flex-basis alias_for=flex-basis | |
| 577 -webkit-flex-direction alias_for=flex-direction | |
| 578 -webkit-flex-flow alias_for=flex-flow | |
| 579 -webkit-flex-grow alias_for=flex-grow | |
| 580 -webkit-flex-shrink alias_for=flex-shrink | |
| 581 -webkit-flex-wrap alias_for=flex-wrap | |
| 582 -webkit-justify-content alias_for=justify-content | |
| 583 -webkit-opacity alias_for=opacity | |
| 584 -webkit-order alias_for=order | |
| OLD | NEW |