| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 top animatable, initial=initialOffset, converter=convertLengthOrAuto | 296 top animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 297 touch-action converter=convertFlags<TouchAction> | 297 touch-action converter=convertFlags<TouchAction> |
| 298 transform animatable, custom_value | 298 transform animatable, custom_value |
| 299 transform-origin animatable, converter=convertTransformOrigin | 299 transform-origin animatable, converter=convertTransformOrigin |
| 300 transform-style name_for_methods=TransformStyle3D | 300 transform-style name_for_methods=TransformStyle3D |
| 301 transition-delay custom_all | 301 transition-delay custom_all |
| 302 transition-duration custom_all | 302 transition-duration custom_all |
| 303 transition-property custom_all | 303 transition-property custom_all |
| 304 transition-timing-function custom_all | 304 transition-timing-function custom_all |
| 305 unicode-bidi | 305 unicode-bidi |
| 306 variable inherited, custom_all |
| 306 vector-effect svg | 307 vector-effect svg |
| 307 vertical-align animatable, custom_inherit, custom_value | 308 vertical-align animatable, custom_inherit, custom_value |
| 308 visibility animatable, inherited | 309 visibility animatable, inherited |
| 309 x animatable, svg, converter=convertLength | 310 x animatable, svg, converter=convertLength |
| 310 y animatable, svg, converter=convertLength | 311 y animatable, svg, converter=convertLength |
| 311 -webkit-appearance type_name=ControlPart | 312 -webkit-appearance type_name=ControlPart |
| 312 -webkit-app-region custom_all | 313 -webkit-app-region custom_all |
| 313 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip | 314 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip |
| 314 -webkit-background-composite custom_all | 315 -webkit-background-composite custom_all |
| 315 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin | 316 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 -webkit-shape-margin alias_for=shape-margin | 534 -webkit-shape-margin alias_for=shape-margin |
| 534 -webkit-shape-outside alias_for=shape-outside | 535 -webkit-shape-outside alias_for=shape-outside |
| 535 -webkit-transform alias_for=transform | 536 -webkit-transform alias_for=transform |
| 536 -webkit-transform-origin alias_for=transform-origin | 537 -webkit-transform-origin alias_for=transform-origin |
| 537 -webkit-transform-style alias_for=transform-style | 538 -webkit-transform-style alias_for=transform-style |
| 538 -webkit-transition alias_for=transition | 539 -webkit-transition alias_for=transition |
| 539 -webkit-transition-delay alias_for=transition-delay | 540 -webkit-transition-delay alias_for=transition-delay |
| 540 -webkit-transition-duration alias_for=transition-duration | 541 -webkit-transition-duration alias_for=transition-duration |
| 541 -webkit-transition-property alias_for=transition-property | 542 -webkit-transition-property alias_for=transition-property |
| 542 -webkit-transition-timing-function alias_for=transition-timing-function | 543 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |