| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType | 264 scroll-snap-type runtime_flag=CSSScrollSnapPoints, type_name=ScrollSnapType |
| 265 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 265 scroll-snap-points-x runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 266 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts | 266 scroll-snap-points-y runtime_flag=CSSScrollSnapPoints, converter=convertSnapPoin
ts |
| 267 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion | 267 scroll-snap-destination runtime_flag=CSSScrollSnapPoints, converter=convertPosit
ion |
| 268 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates | 268 scroll-snap-coordinate runtime_flag=CSSScrollSnapPoints, converter=convertSnapCo
ordinates |
| 269 shape-image-threshold interpolable, type_name=float | 269 shape-image-threshold interpolable, type_name=float |
| 270 shape-margin interpolable, converter=convertLength | 270 shape-margin interpolable, converter=convertLength |
| 271 shape-outside interpolable, converter=convertShapeValue | 271 shape-outside interpolable, converter=convertShapeValue |
| 272 shape-rendering inherited, svg | 272 shape-rendering inherited, svg |
| 273 size custom_all | 273 size custom_all |
| 274 snap-height runtime_flag=CSSSnapSize, inherited, custom_all |
| 274 speak inherited | 275 speak inherited |
| 275 stop-color interpolable, svg, converter=convertColor | 276 stop-color interpolable, svg, converter=convertColor |
| 276 stop-opacity interpolable, svg, converter=convertNumberOrPercentage | 277 stop-opacity interpolable, svg, converter=convertNumberOrPercentage |
| 277 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all | 278 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all |
| 278 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray,
converter=convertStrokeDasharray | 279 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray,
converter=convertStrokeDasharray |
| 279 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse
t, converter=convertLength | 280 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse
t, converter=convertLength |
| 280 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle | 281 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle |
| 281 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle | 282 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle |
| 282 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method
s=StrokeMiterLimit | 283 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method
s=StrokeMiterLimit |
| 283 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage | 284 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 -webkit-shape-margin alias_for=shape-margin | 543 -webkit-shape-margin alias_for=shape-margin |
| 543 -webkit-shape-outside alias_for=shape-outside | 544 -webkit-shape-outside alias_for=shape-outside |
| 544 -webkit-transform alias_for=transform | 545 -webkit-transform alias_for=transform |
| 545 -webkit-transform-origin alias_for=transform-origin | 546 -webkit-transform-origin alias_for=transform-origin |
| 546 -webkit-transform-style alias_for=transform-style | 547 -webkit-transform-style alias_for=transform-style |
| 547 -webkit-transition alias_for=transition | 548 -webkit-transition alias_for=transition |
| 548 -webkit-transition-delay alias_for=transition-delay | 549 -webkit-transition-delay alias_for=transition-delay |
| 549 -webkit-transition-duration alias_for=transition-duration | 550 -webkit-transition-duration alias_for=transition-duration |
| 550 -webkit-transition-property alias_for=transition-property | 551 -webkit-transition-property alias_for=transition-property |
| 551 -webkit-transition-timing-function alias_for=transition-timing-function | 552 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |