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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
300 transform-origin interpolable, converter=convertTransformOrigin | 300 transform-origin interpolable, converter=convertTransformOrigin |
301 transform-style name_for_methods=TransformStyle3D | 301 transform-style name_for_methods=TransformStyle3D |
302 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable | 302 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable |
303 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable | 303 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable |
304 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable | 304 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable |
305 transition-delay custom_all | 305 transition-delay custom_all |
306 transition-duration custom_all | 306 transition-duration custom_all |
307 transition-property custom_all | 307 transition-property custom_all |
308 transition-timing-function custom_all | 308 transition-timing-function custom_all |
309 unicode-bidi | 309 unicode-bidi |
310 variable inherited, custom_all | |
alancutter (OOO until 2018)
2015/08/05 08:01:43
You'll want to make this one special in the CSSPro
| |
310 vector-effect svg | 311 vector-effect svg |
311 vertical-align interpolable, custom_inherit, custom_value | 312 vertical-align interpolable, custom_inherit, custom_value |
312 visibility interpolable, inherited | 313 visibility interpolable, inherited |
313 x interpolable, svg, converter=convertLength | 314 x interpolable, svg, converter=convertLength |
314 y interpolable, svg, converter=convertLength | 315 y interpolable, svg, converter=convertLength |
315 -webkit-appearance type_name=ControlPart | 316 -webkit-appearance type_name=ControlPart |
316 -webkit-app-region custom_all | 317 -webkit-app-region custom_all |
317 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip | 318 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip |
318 -webkit-background-composite custom_all | 319 -webkit-background-composite custom_all |
319 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin | 320 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
537 -webkit-shape-margin alias_for=shape-margin | 538 -webkit-shape-margin alias_for=shape-margin |
538 -webkit-shape-outside alias_for=shape-outside | 539 -webkit-shape-outside alias_for=shape-outside |
539 -webkit-transform alias_for=transform | 540 -webkit-transform alias_for=transform |
540 -webkit-transform-origin alias_for=transform-origin | 541 -webkit-transform-origin alias_for=transform-origin |
541 -webkit-transform-style alias_for=transform-style | 542 -webkit-transform-style alias_for=transform-style |
542 -webkit-transition alias_for=transition | 543 -webkit-transition alias_for=transition |
543 -webkit-transition-delay alias_for=transition-delay | 544 -webkit-transition-delay alias_for=transition-delay |
544 -webkit-transition-duration alias_for=transition-duration | 545 -webkit-transition-duration alias_for=transition-duration |
545 -webkit-transition-property alias_for=transition-property | 546 -webkit-transition-property alias_for=transition-property |
546 -webkit-transition-timing-function alias_for=transition-timing-function | 547 -webkit-transition-timing-function alias_for=transition-timing-function |
OLD | NEW |