| 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 // UseCounter will not pick up on these (crbug.com/304855) | 9 // UseCounter will not pick up on these (crbug.com/304855) |
| 10 | 10 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 border-top-color animatable, custom_all | 134 border-top-color animatable, custom_all |
| 135 border-top-left-radius animatable, initial=initialBorderRadius, converter=conver
tRadius | 135 border-top-left-radius animatable, initial=initialBorderRadius, converter=conver
tRadius |
| 136 border-top-right-radius animatable, initial=initialBorderRadius, converter=conve
rtRadius | 136 border-top-right-radius animatable, initial=initialBorderRadius, converter=conve
rtRadius |
| 137 border-top-style type_name=EBorderStyle, initial=initialBorderStyle | 137 border-top-style type_name=EBorderStyle, initial=initialBorderStyle |
| 138 border-top-width animatable, initial=initialBorderWidth, converter=convertLineWi
dth<unsigned> | 138 border-top-width animatable, initial=initialBorderWidth, converter=convertLineWi
dth<unsigned> |
| 139 bottom animatable, initial=initialOffset, converter=convertLengthOrAuto | 139 bottom animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 140 box-shadow animatable, converter=convertShadow | 140 box-shadow animatable, converter=convertShadow |
| 141 box-sizing | 141 box-sizing |
| 142 caption-side inherited | 142 caption-side inherited |
| 143 clip animatable, converter=convertClip, custom_all | 143 clip animatable, converter=convertClip, custom_all |
| 144 content custom_all | |
| 145 cursor inherited, custom_all | 144 cursor inherited, custom_all |
| 146 display | 145 display |
| 147 empty-cells inherited, type_name=EEmptyCell | 146 empty-cells inherited, type_name=EEmptyCell |
| 148 flex-basis animatable, converter=convertLengthOrAuto | 147 flex-basis animatable, converter=convertLengthOrAuto |
| 149 flex-direction | 148 flex-direction |
| 150 flex-grow animatable, type_name=float | 149 flex-grow animatable, type_name=float |
| 151 flex-shrink animatable, type_name=float | 150 flex-shrink animatable, type_name=float |
| 152 flex-wrap | 151 flex-wrap |
| 153 height animatable, initial=initialSize, converter=convertLengthSizing | 152 height animatable, initial=initialSize, converter=convertLengthSizing |
| 154 image-rendering inherited | 153 image-rendering inherited |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 -webkit-flex alias_for=flex | 414 -webkit-flex alias_for=flex |
| 416 -webkit-flex-basis alias_for=flex-basis | 415 -webkit-flex-basis alias_for=flex-basis |
| 417 -webkit-flex-direction alias_for=flex-direction | 416 -webkit-flex-direction alias_for=flex-direction |
| 418 -webkit-flex-flow alias_for=flex-flow | 417 -webkit-flex-flow alias_for=flex-flow |
| 419 -webkit-flex-grow alias_for=flex-grow | 418 -webkit-flex-grow alias_for=flex-grow |
| 420 -webkit-flex-shrink alias_for=flex-shrink | 419 -webkit-flex-shrink alias_for=flex-shrink |
| 421 -webkit-flex-wrap alias_for=flex-wrap | 420 -webkit-flex-wrap alias_for=flex-wrap |
| 422 -webkit-justify-content alias_for=justify-content | 421 -webkit-justify-content alias_for=justify-content |
| 423 -webkit-opacity alias_for=opacity | 422 -webkit-opacity alias_for=opacity |
| 424 -webkit-order alias_for=order | 423 -webkit-order alias_for=order |
| OLD | NEW |