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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 page-break-before type_name=EPageBreak, initial=initialPageBreak | 232 page-break-before type_name=EPageBreak, initial=initialPageBreak |
233 page-break-inside type_name=EPageBreak, initial=initialPageBreak | 233 page-break-inside type_name=EPageBreak, initial=initialPageBreak |
234 paint-order inherited, svg, converter=convertPaintOrder | 234 paint-order inherited, svg, converter=convertPaintOrder |
235 perspective animatable, converter=convertPerspective | 235 perspective animatable, converter=convertPerspective |
236 perspective-origin animatable, converter=convertPerspectiveOrigin | 236 perspective-origin animatable, converter=convertPerspectiveOrigin |
237 pointer-events inherited | 237 pointer-events inherited |
238 position | 238 position |
239 quotes inherited, converter=convertQuotes | 239 quotes inherited, converter=convertQuotes |
240 resize custom_value | 240 resize custom_value |
241 right animatable, initial=initialOffset, converter=convertLengthOrAuto | 241 right animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 242 rx animatable, svg, converter=convertLength |
| 243 ry animatable, svg, converter=convertLength |
242 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior | 244 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior |
243 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol
lBlocksOn> | 245 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol
lBlocksOn> |
244 shape-image-threshold animatable, type_name=float | 246 shape-image-threshold animatable, type_name=float |
245 shape-margin animatable, converter=convertLength | 247 shape-margin animatable, converter=convertLength |
246 shape-outside animatable, converter=convertShapeValue | 248 shape-outside animatable, converter=convertShapeValue |
247 shape-rendering inherited, svg | 249 shape-rendering inherited, svg |
248 size custom_all | 250 size custom_all |
249 speak inherited | 251 speak inherited |
250 stop-color animatable, svg, converter=convertSVGColor | 252 stop-color animatable, svg, converter=convertSVGColor |
251 stop-opacity animatable, svg, converter=convertNumberOrPercentage | 253 stop-opacity animatable, svg, converter=convertNumberOrPercentage |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 -webkit-flex-flow alias_for=flex-flow | 523 -webkit-flex-flow alias_for=flex-flow |
522 -webkit-flex-grow alias_for=flex-grow | 524 -webkit-flex-grow alias_for=flex-grow |
523 -webkit-flex-shrink alias_for=flex-shrink | 525 -webkit-flex-shrink alias_for=flex-shrink |
524 -webkit-flex-wrap alias_for=flex-wrap | 526 -webkit-flex-wrap alias_for=flex-wrap |
525 -webkit-justify-content alias_for=justify-content | 527 -webkit-justify-content alias_for=justify-content |
526 -webkit-opacity alias_for=opacity | 528 -webkit-opacity alias_for=opacity |
527 -webkit-order alias_for=order | 529 -webkit-order alias_for=order |
528 -webkit-shape-image-threshold alias_for=shape-image-threshold | 530 -webkit-shape-image-threshold alias_for=shape-image-threshold |
529 -webkit-shape-margin alias_for=shape-margin | 531 -webkit-shape-margin alias_for=shape-margin |
530 -webkit-shape-outside alias_for=shape-outside | 532 -webkit-shape-outside alias_for=shape-outside |
OLD | NEW |