| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify | 286 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify |
| 287 text-overflow type_name=TextOverflow | 287 text-overflow type_name=TextOverflow |
| 288 text-shadow animatable, inherited, converter=convertShadow | 288 text-shadow animatable, inherited, converter=convertShadow |
| 289 text-transform inherited | 289 text-transform inherited |
| 290 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition | 290 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition |
| 291 top animatable, initial=initialOffset, converter=convertLengthOrAuto | 291 top animatable, initial=initialOffset, converter=convertLengthOrAuto |
| 292 touch-action converter=convertFlags<TouchAction> | 292 touch-action converter=convertFlags<TouchAction> |
| 293 transform animatable, custom_value | 293 transform animatable, custom_value |
| 294 transform-origin animatable, converter=convertTransformOrigin | 294 transform-origin animatable, converter=convertTransformOrigin |
| 295 transform-style name_for_methods=TransformStyle3D | 295 transform-style name_for_methods=TransformStyle3D |
| 296 translate runtime_flag=CSSIndependentTransformProperties, custom_all, animatable |
| 297 rotate runtime_flag=CSSIndependentTransformProperties, custom_all, animatable |
| 298 scale runtime_flag=CSSIndependentTransformProperties, custom_all, animatable |
| 296 transition-delay custom_all | 299 transition-delay custom_all |
| 297 transition-duration custom_all | 300 transition-duration custom_all |
| 298 transition-property custom_all | 301 transition-property custom_all |
| 299 transition-timing-function custom_all | 302 transition-timing-function custom_all |
| 300 unicode-bidi | 303 unicode-bidi |
| 301 vector-effect svg | 304 vector-effect svg |
| 302 vertical-align animatable, custom_inherit, custom_value | 305 vertical-align animatable, custom_inherit, custom_value |
| 303 visibility animatable, inherited | 306 visibility animatable, inherited |
| 304 x animatable, svg, converter=convertLength | 307 x animatable, svg, converter=convertLength |
| 305 y animatable, svg, converter=convertLength | 308 y animatable, svg, converter=convertLength |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 -webkit-shape-margin alias_for=shape-margin | 531 -webkit-shape-margin alias_for=shape-margin |
| 529 -webkit-shape-outside alias_for=shape-outside | 532 -webkit-shape-outside alias_for=shape-outside |
| 530 -webkit-transform alias_for=transform | 533 -webkit-transform alias_for=transform |
| 531 -webkit-transform-origin alias_for=transform-origin | 534 -webkit-transform-origin alias_for=transform-origin |
| 532 -webkit-transform-style alias_for=transform-style | 535 -webkit-transform-style alias_for=transform-style |
| 533 -webkit-transition alias_for=transition | 536 -webkit-transition alias_for=transition |
| 534 -webkit-transition-delay alias_for=transition-delay | 537 -webkit-transition-delay alias_for=transition-delay |
| 535 -webkit-transition-duration alias_for=transition-duration | 538 -webkit-transition-duration alias_for=transition-duration |
| 536 -webkit-transition-property alias_for=transition-property | 539 -webkit-transition-property alias_for=transition-property |
| 537 -webkit-transition-timing-function alias_for=transition-timing-function | 540 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |