| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 perspective-origin interpolable, converter=convertPerspectiveOrigin | 249 perspective-origin interpolable, converter=convertPerspectiveOrigin |
| 250 pointer-events inherited | 250 pointer-events inherited |
| 251 position | 251 position |
| 252 quotes inherited, converter=convertQuotes | 252 quotes inherited, converter=convertQuotes |
| 253 resize custom_value | 253 resize custom_value |
| 254 right interpolable, initial=initialOffset, converter=convertLengthOrAuto | 254 right interpolable, initial=initialOffset, converter=convertLengthOrAuto |
| 255 r interpolable, svg, converter=convertLength | 255 r interpolable, svg, converter=convertLength |
| 256 rx interpolable, svg, converter=convertLength | 256 rx interpolable, svg, converter=convertLength |
| 257 ry interpolable, svg, converter=convertLength | 257 ry interpolable, svg, converter=convertLength |
| 258 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior | 258 scroll-behavior runtime_flag=CSSOMSmoothScroll, type_name=ScrollBehavior |
| 259 scroll-blocks-on runtime_flag=CSSScrollBlocksOn, converter=convertFlags<WebScrol
lBlocksOn> | |
| 260 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType | 259 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType |
| 261 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 260 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 262 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 261 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 263 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion | 262 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion |
| 264 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates | 263 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates |
| 265 shape-image-threshold interpolable, type_name=float | 264 shape-image-threshold interpolable, type_name=float |
| 266 shape-margin interpolable, converter=convertLength | 265 shape-margin interpolable, converter=convertLength |
| 267 shape-outside interpolable, converter=convertShapeValue | 266 shape-outside interpolable, converter=convertShapeValue |
| 268 shape-rendering inherited, svg | 267 shape-rendering inherited, svg |
| 269 size custom_all | 268 size custom_all |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 -webkit-shape-margin alias_for=shape-margin | 536 -webkit-shape-margin alias_for=shape-margin |
| 538 -webkit-shape-outside alias_for=shape-outside | 537 -webkit-shape-outside alias_for=shape-outside |
| 539 -webkit-transform alias_for=transform | 538 -webkit-transform alias_for=transform |
| 540 -webkit-transform-origin alias_for=transform-origin | 539 -webkit-transform-origin alias_for=transform-origin |
| 541 -webkit-transform-style alias_for=transform-style | 540 -webkit-transform-style alias_for=transform-style |
| 542 -webkit-transition alias_for=transition | 541 -webkit-transition alias_for=transition |
| 543 -webkit-transition-delay alias_for=transition-delay | 542 -webkit-transition-delay alias_for=transition-delay |
| 544 -webkit-transition-duration alias_for=transition-duration | 543 -webkit-transition-duration alias_for=transition-duration |
| 545 -webkit-transition-property alias_for=transition-property | 544 -webkit-transition-property alias_for=transition-property |
| 546 -webkit-transition-timing-function alias_for=transition-timing-function | 545 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |