| 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 | 5 |
| 6 // - alias_for=other-property | 6 // - alias_for=other-property |
| 7 // Properties specifying alias_for do not get their own enum and instead map | 7 // Properties specifying alias_for do not get their own enum and instead map |
| 8 // directly onto the CSSPropertyID they alias. Currently this means that the | 8 // directly onto the CSSPropertyID they alias. Currently this means that the |
| 9 | 9 |
| 10 | 10 |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 -webkit-user-modify inherited | 276 -webkit-user-modify inherited |
| 277 -webkit-user-select inherited | 277 -webkit-user-select inherited |
| 278 white-space inherited | 278 white-space inherited |
| 279 widows animatable, inherited, type_name=short, custom_all | 279 widows animatable, inherited, type_name=short, custom_all |
| 280 width animatable, initial=initialSize, converter=convertLengthSizing | 280 width animatable, initial=initialSize, converter=convertLengthSizing |
| 281 will-change custom_all | 281 will-change custom_all |
| 282 word-break inherited | 282 word-break inherited |
| 283 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing | 283 word-spacing animatable, inherited, initial=initialLetterWordSpacing, converter=
convertSpacing |
| 284 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 284 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 285 word-wrap inherited, name_for_methods=OverflowWrap | 285 word-wrap inherited, name_for_methods=OverflowWrap |
| 286 z-index animatable, type_name=int, custom_all | 286 z-index animatable, type_name=unsigned, custom_all |
| 287 | 287 |
| 288 // Non-standard direction aware properties | 288 // Non-standard direction aware properties |
| 289 | 289 |
| 290 -webkit-border-end-color direction_aware | 290 -webkit-border-end-color direction_aware |
| 291 -webkit-border-end-style direction_aware | 291 -webkit-border-end-style direction_aware |
| 292 -webkit-border-end-width direction_aware | 292 -webkit-border-end-width direction_aware |
| 293 -webkit-border-start-color direction_aware | 293 -webkit-border-start-color direction_aware |
| 294 -webkit-border-start-style direction_aware | 294 -webkit-border-start-style direction_aware |
| 295 -webkit-border-start-width direction_aware | 295 -webkit-border-start-width direction_aware |
| 296 -webkit-border-before-color direction_aware | 296 -webkit-border-before-color direction_aware |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 -webkit-flex alias_for=flex | 383 -webkit-flex alias_for=flex |
| 384 -webkit-flex-basis alias_for=flex-basis | 384 -webkit-flex-basis alias_for=flex-basis |
| 385 -webkit-flex-direction alias_for=flex-direction | 385 -webkit-flex-direction alias_for=flex-direction |
| 386 -webkit-flex-flow alias_for=flex-flow | 386 -webkit-flex-flow alias_for=flex-flow |
| 387 -webkit-flex-grow alias_for=flex-grow | 387 -webkit-flex-grow alias_for=flex-grow |
| 388 -webkit-flex-shrink alias_for=flex-shrink | 388 -webkit-flex-shrink alias_for=flex-shrink |
| 389 -webkit-flex-wrap alias_for=flex-wrap | 389 -webkit-flex-wrap alias_for=flex-wrap |
| 390 -webkit-justify-content alias_for=justify-content | 390 -webkit-justify-content alias_for=justify-content |
| 391 -webkit-opacity alias_for=opacity | 391 -webkit-opacity alias_for=opacity |
| 392 -webkit-order alias_for=order | 392 -webkit-order alias_for=order |
| OLD | NEW |