| 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 should be virtually identical to the | 7 // Properties specifying alias_for should be virtually identical to the |
| 8 // properties they alias. Minor parsing differences are allowed as long as | 8 // properties they alias. Minor parsing differences are allowed as long as |
| 9 // the CSSValues created are of the same format of the aliased property. | 9 // the CSSValues created are of the same format of the aliased property. |
| 10 | 10 |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 padding-top interpolable, initial=initialPadding, converter=convertLength | 265 padding-top interpolable, initial=initialPadding, converter=convertLength |
| 266 paint-order inherited, svg, converter=convertPaintOrder | 266 paint-order inherited, svg, converter=convertPaintOrder |
| 267 perspective interpolable, converter=convertPerspective | 267 perspective interpolable, converter=convertPerspective |
| 268 perspective-origin interpolable, converter=convertPosition | 268 perspective-origin interpolable, converter=convertPosition |
| 269 pointer-events inherited | 269 pointer-events inherited |
| 270 position custom_inherit | 270 position custom_inherit |
| 271 quotes inherited, converter=convertQuotes | 271 quotes inherited, converter=convertQuotes |
| 272 resize custom_value | 272 resize custom_value |
| 273 right interpolable, initial=initialOffset, converter=convertLengthOrAuto | 273 right interpolable, initial=initialOffset, converter=convertLengthOrAuto |
| 274 r interpolable, svg, converter=convertLength | 274 r interpolable, svg, converter=convertLength |
| 275 rx interpolable, svg, converter=convertLength | 275 rx interpolable, svg, converter=convertLengthOrAuto |
| 276 ry interpolable, svg, converter=convertLength | 276 ry interpolable, svg, converter=convertLengthOrAuto |
| 277 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior | 277 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior |
| 278 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType | 278 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType |
| 279 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 279 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 280 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 280 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 281 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion | 281 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion |
| 282 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates | 282 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates |
| 283 shape-image-threshold interpolable, type_name=float | 283 shape-image-threshold interpolable, type_name=float |
| 284 shape-margin interpolable, converter=convertLength | 284 shape-margin interpolable, converter=convertLength |
| 285 shape-outside interpolable, converter=convertShapeValue | 285 shape-outside interpolable, converter=convertShapeValue |
| 286 shape-rendering inherited, svg | 286 shape-rendering inherited, svg |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 -webkit-shape-margin alias_for=shape-margin | 569 -webkit-shape-margin alias_for=shape-margin |
| 570 -webkit-shape-outside alias_for=shape-outside | 570 -webkit-shape-outside alias_for=shape-outside |
| 571 -webkit-transform alias_for=transform | 571 -webkit-transform alias_for=transform |
| 572 -webkit-transform-origin alias_for=transform-origin | 572 -webkit-transform-origin alias_for=transform-origin |
| 573 -webkit-transform-style alias_for=transform-style | 573 -webkit-transform-style alias_for=transform-style |
| 574 -webkit-transition alias_for=transition | 574 -webkit-transition alias_for=transition |
| 575 -webkit-transition-delay alias_for=transition-delay | 575 -webkit-transition-delay alias_for=transition-delay |
| 576 -webkit-transition-duration alias_for=transition-duration | 576 -webkit-transition-duration alias_for=transition-duration |
| 577 -webkit-transition-property alias_for=transition-property | 577 -webkit-transition-property alias_for=transition-property |
| 578 -webkit-transition-timing-function alias_for=transition-timing-function | 578 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |