| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 181 grid-column-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 182 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 182 grid-column-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 183 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition | 183 grid-row-end runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 184 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition | 184 grid-row-start runtime_flag=CSSGridLayout, converter=convertGridPosition |
| 185 grid-template-areas runtime_flag=CSSGridLayout, custom_all | 185 grid-template-areas runtime_flag=CSSGridLayout, custom_all |
| 186 grid-template-columns runtime_flag=CSSGridLayout, custom_all | 186 grid-template-columns runtime_flag=CSSGridLayout, custom_all |
| 187 grid-template-rows runtime_flag=CSSGridLayout, custom_all | 187 grid-template-rows runtime_flag=CSSGridLayout, custom_all |
| 188 height animatable, initial=initialSize, converter=convertLengthSizing | 188 height animatable, initial=initialSize, converter=convertLengthSizing |
| 189 image-rendering inherited | 189 image-rendering inherited |
| 190 isolation runtime_flag=CSSCompositing | 190 isolation runtime_flag=CSSCompositing |
| 191 justify-content | 191 justify-content custom_all |
| 192 justify-items runtime_flag=CSSGridLayout, custom_all | 192 justify-items runtime_flag=CSSGridLayout, custom_all |
| 193 justify-self runtime_flag=CSSGridLayout, custom_all | 193 justify-self runtime_flag=CSSGridLayout, custom_all |
| 194 left animatable, initial=initialOffset, converter=convertLengthOrAuto | 194 left animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 195 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 195 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
| 196 lighting-color animatable, svg, converter=convertSVGColor | 196 lighting-color animatable, svg, converter=convertSVGColor |
| 197 list-style-image animatable, inherited, custom_value | 197 list-style-image animatable, inherited, custom_value |
| 198 list-style-position inherited | 198 list-style-position inherited |
| 199 list-style-type inherited | 199 list-style-type inherited |
| 200 margin-bottom animatable, initial=initialMargin, converter=convertLengthOrAuto | 200 margin-bottom animatable, initial=initialMargin, converter=convertLengthOrAuto |
| 201 margin-left animatable, initial=initialMargin, converter=convertLengthOrAuto | 201 margin-left animatable, initial=initialMargin, converter=convertLengthOrAuto |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 -webkit-flex-flow alias_for=flex-flow | 526 -webkit-flex-flow alias_for=flex-flow |
| 527 -webkit-flex-grow alias_for=flex-grow | 527 -webkit-flex-grow alias_for=flex-grow |
| 528 -webkit-flex-shrink alias_for=flex-shrink | 528 -webkit-flex-shrink alias_for=flex-shrink |
| 529 -webkit-flex-wrap alias_for=flex-wrap | 529 -webkit-flex-wrap alias_for=flex-wrap |
| 530 -webkit-justify-content alias_for=justify-content | 530 -webkit-justify-content alias_for=justify-content |
| 531 -webkit-opacity alias_for=opacity | 531 -webkit-opacity alias_for=opacity |
| 532 -webkit-order alias_for=order | 532 -webkit-order alias_for=order |
| 533 -webkit-shape-image-threshold alias_for=shape-image-threshold | 533 -webkit-shape-image-threshold alias_for=shape-image-threshold |
| 534 -webkit-shape-margin alias_for=shape-margin | 534 -webkit-shape-margin alias_for=shape-margin |
| 535 -webkit-shape-outside alias_for=shape-outside | 535 -webkit-shape-outside alias_for=shape-outside |
| OLD | NEW |