| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 // LAYOUT | 152 // LAYOUT |
| 153 box-sizing | 153 box-sizing |
| 154 | 154 |
| 155 clip animatable, converter=convertClip, custom_all | 155 clip animatable, converter=convertClip, custom_all |
| 156 | 156 |
| 157 // LAYOUT | 157 // LAYOUT |
| 158 display | 158 display |
| 159 | 159 |
| 160 // LAYOUT | 160 // LAYOUT |
| 161 empty-cells inherited, type_name=EEmptyCell | |
| 162 | |
| 163 // LAYOUT | |
| 164 flex-basis animatable, converter=convertLengthOrAuto | 161 flex-basis animatable, converter=convertLengthOrAuto |
| 165 | 162 |
| 166 // LAYOUT | 163 // LAYOUT |
| 167 flex-direction | 164 flex-direction |
| 168 | 165 |
| 169 // LAYOUT | 166 // LAYOUT |
| 170 flex-grow animatable, type_name=float | 167 flex-grow animatable, type_name=float |
| 171 | 168 |
| 172 // LAYOUT | 169 // LAYOUT |
| 173 flex-shrink animatable, type_name=float | 170 flex-shrink animatable, type_name=float |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color | 502 -webkit-border-after longhands=-webkit-border-after-width;-webkit-border-after-s
tyle;-webkit-border-after-color |
| 506 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color | 503 -webkit-border-before longhands=-webkit-border-before-width;-webkit-border-befor
e-style;-webkit-border-before-color |
| 507 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color | 504 -webkit-border-end longhands=-webkit-border-end-width;-webkit-border-end-style;-
webkit-border-end-color |
| 508 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" | 505 // "-webkit-border-radius: 1px 2px" behaves as "border-radius: 1px / 2px" |
| 509 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius | 506 -webkit-border-radius longhands=border-top-left-radius;border-top-right-radius;b
order-bottom-right-radius;border-bottom-left-radius |
| 510 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color | 507 -webkit-border-start longhands=-webkit-border-start-width;-webkit-border-start-s
tyle;-webkit-border-start-color |
| 511 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color | 508 -webkit-text-emphasis longhands=-webkit-text-emphasis-style;-webkit-text-emphasi
s-color |
| 512 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r | 509 -webkit-text-stroke longhands=-webkit-text-stroke-width;-webkit-text-stroke-colo
r |
| 513 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z | 510 -webkit-transform-origin longhands=-webkit-transform-origin-x;-webkit-transform-
origin-y;-webkit-transform-origin-z |
| 514 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay | 511 transition longhands=transition-property;transition-duration;transition-timing-f
unction;transition-delay |
| OLD | NEW |