| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 grid-template-rows runtime_flag=CSSGridLayout, custom_all | 183 grid-template-rows runtime_flag=CSSGridLayout, custom_all |
| 184 height animatable, initial=initialSize, converter=convertLengthSizing | 184 height animatable, initial=initialSize, converter=convertLengthSizing |
| 185 image-rendering inherited | 185 image-rendering inherited |
| 186 isolation runtime_flag=CSSCompositing | 186 isolation runtime_flag=CSSCompositing |
| 187 justify-content custom_all | 187 justify-content custom_all |
| 188 justify-items runtime_flag=CSSGridLayout, custom_all | 188 justify-items runtime_flag=CSSGridLayout, custom_all |
| 189 justify-self runtime_flag=CSSGridLayout, custom_all | 189 justify-self runtime_flag=CSSGridLayout, custom_all |
| 190 left animatable, initial=initialOffset, converter=convertLengthOrAuto | 190 left animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 191 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 191 letter-spacing animatable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
| 192 lighting-color animatable, svg, converter=convertSVGColor | 192 lighting-color animatable, svg, converter=convertSVGColor |
| 193 line-height animatable, inherited, getter=specifiedLineHeight, custom_value | 193 line-height animatable, inherited, getter=specifiedLineHeight, converter=convert
LineHeight |
| 194 list-style-image animatable, inherited, custom_value | 194 list-style-image animatable, inherited, custom_value |
| 195 list-style-position inherited | 195 list-style-position inherited |
| 196 list-style-type inherited | 196 list-style-type inherited |
| 197 margin-bottom animatable, initial=initialMargin, converter=convertLengthOrAuto | 197 margin-bottom animatable, initial=initialMargin, converter=convertLengthOrAuto |
| 198 margin-left animatable, initial=initialMargin, converter=convertLengthOrAuto | 198 margin-left animatable, initial=initialMargin, converter=convertLengthOrAuto |
| 199 margin-right animatable, initial=initialMargin, converter=convertLengthOrAuto | 199 margin-right animatable, initial=initialMargin, converter=convertLengthOrAuto |
| 200 margin-top animatable, initial=initialMargin, converter=convertLengthOrAuto | 200 margin-top animatable, initial=initialMargin, converter=convertLengthOrAuto |
| 201 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert
FragmentIdentifier | 201 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert
FragmentIdentifier |
| 202 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert
FragmentIdentifier | 202 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert
FragmentIdentifier |
| 203 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con
vertFragmentIdentifier | 203 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con
vertFragmentIdentifier |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 -webkit-flex-flow alias_for=flex-flow | 515 -webkit-flex-flow alias_for=flex-flow |
| 516 -webkit-flex-grow alias_for=flex-grow | 516 -webkit-flex-grow alias_for=flex-grow |
| 517 -webkit-flex-shrink alias_for=flex-shrink | 517 -webkit-flex-shrink alias_for=flex-shrink |
| 518 -webkit-flex-wrap alias_for=flex-wrap | 518 -webkit-flex-wrap alias_for=flex-wrap |
| 519 -webkit-justify-content alias_for=justify-content | 519 -webkit-justify-content alias_for=justify-content |
| 520 -webkit-opacity alias_for=opacity | 520 -webkit-opacity alias_for=opacity |
| 521 -webkit-order alias_for=order | 521 -webkit-order alias_for=order |
| 522 -webkit-shape-image-threshold alias_for=shape-image-threshold | 522 -webkit-shape-image-threshold alias_for=shape-image-threshold |
| 523 -webkit-shape-margin alias_for=shape-margin | 523 -webkit-shape-margin alias_for=shape-margin |
| 524 -webkit-shape-outside alias_for=shape-outside | 524 -webkit-shape-outside alias_for=shape-outside |
| OLD | NEW |