| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 padding-right animatable, initial=initialPadding, converter=convertLength | 186 padding-right animatable, initial=initialPadding, converter=convertLength |
| 187 padding-top animatable, initial=initialPadding, converter=convertLength | 187 padding-top animatable, initial=initialPadding, converter=convertLength |
| 188 page-break-after type_name=EPageBreak, initial=initialPageBreak | 188 page-break-after type_name=EPageBreak, initial=initialPageBreak |
| 189 page-break-before type_name=EPageBreak, initial=initialPageBreak | 189 page-break-before type_name=EPageBreak, initial=initialPageBreak |
| 190 page-break-inside type_name=EPageBreak, initial=initialPageBreak | 190 page-break-inside type_name=EPageBreak, initial=initialPageBreak |
| 191 perspective animatable, custom_value | 191 perspective animatable, custom_value |
| 192 perspective-origin animatable, custom_all | 192 perspective-origin animatable, custom_all |
| 193 pointer-events inherited | 193 pointer-events inherited |
| 194 position | 194 position |
| 195 quotes inherited, converter=convertQuotes | 195 quotes inherited, converter=convertQuotes |
| 196 // FIXME: This shouldn't be inherited, as per css-ui | |
| 197 resize inherited, custom_value | |
| 198 right animatable, initial=initialOffset, converter=convertLengthOrAuto | 196 right animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 199 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior | 197 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior |
| 200 size custom_all | 198 size custom_all |
| 201 speak inherited | 199 speak inherited |
| 202 table-layout | 200 table-layout |
| 203 tab-size inherited, type_name=unsigned | 201 tab-size inherited, type_name=unsigned |
| 204 text-align inherited, custom_value | 202 text-align inherited, custom_value |
| 205 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast | 203 text-align-last runtime_flag=CSS3Text, inherited, type_name=TextAlignLast |
| 206 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag | 204 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag |
| 207 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 205 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 -webkit-flex alias_for=flex | 415 -webkit-flex alias_for=flex |
| 418 -webkit-flex-basis alias_for=flex-basis | 416 -webkit-flex-basis alias_for=flex-basis |
| 419 -webkit-flex-direction alias_for=flex-direction | 417 -webkit-flex-direction alias_for=flex-direction |
| 420 -webkit-flex-flow alias_for=flex-flow | 418 -webkit-flex-flow alias_for=flex-flow |
| 421 -webkit-flex-grow alias_for=flex-grow | 419 -webkit-flex-grow alias_for=flex-grow |
| 422 -webkit-flex-shrink alias_for=flex-shrink | 420 -webkit-flex-shrink alias_for=flex-shrink |
| 423 -webkit-flex-wrap alias_for=flex-wrap | 421 -webkit-flex-wrap alias_for=flex-wrap |
| 424 -webkit-justify-content alias_for=justify-content | 422 -webkit-justify-content alias_for=justify-content |
| 425 -webkit-opacity alias_for=opacity | 423 -webkit-opacity alias_for=opacity |
| 426 -webkit-order alias_for=order | 424 -webkit-order alias_for=order |
| OLD | NEW |