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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
299 transform-origin interpolable, converter=convertTransformOrigin | 299 transform-origin interpolable, converter=convertTransformOrigin |
300 transform-style name_for_methods=TransformStyle3D | 300 transform-style name_for_methods=TransformStyle3D |
301 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable | 301 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans late, interpolable |
302 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable | 302 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate, interpolable |
303 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable | 303 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in terpolable |
304 transition-delay custom_all | 304 transition-delay custom_all |
305 transition-duration custom_all | 305 transition-duration custom_all |
306 transition-property custom_all | 306 transition-property custom_all |
307 transition-timing-function custom_all | 307 transition-timing-function custom_all |
308 unicode-bidi | 308 unicode-bidi |
309 variable inherited, custom_all | |
Timothy Loh
2015/07/23 08:11:46
This is probably going to expose "variable" as a C
leviw_travelin_and_unemployed
2015/08/04 00:42:20
Manually adding it? You mean adding special handli
| |
309 vector-effect svg | 310 vector-effect svg |
310 vertical-align interpolable, custom_inherit, custom_value | 311 vertical-align interpolable, custom_inherit, custom_value |
311 visibility interpolable, inherited | 312 visibility interpolable, inherited |
312 x interpolable, svg, converter=convertLength | 313 x interpolable, svg, converter=convertLength |
313 y interpolable, svg, converter=convertLength | 314 y interpolable, svg, converter=convertLength |
314 -webkit-appearance type_name=ControlPart | 315 -webkit-appearance type_name=ControlPart |
315 -webkit-app-region custom_all | 316 -webkit-app-region custom_all |
316 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip | 317 -webkit-background-clip use_handlers_for=CSSPropertyBackgroundClip |
317 -webkit-background-composite custom_all | 318 -webkit-background-composite custom_all |
318 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin | 319 -webkit-background-origin use_handlers_for=CSSPropertyBackgroundOrigin |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
536 -webkit-shape-margin alias_for=shape-margin | 537 -webkit-shape-margin alias_for=shape-margin |
537 -webkit-shape-outside alias_for=shape-outside | 538 -webkit-shape-outside alias_for=shape-outside |
538 -webkit-transform alias_for=transform | 539 -webkit-transform alias_for=transform |
539 -webkit-transform-origin alias_for=transform-origin | 540 -webkit-transform-origin alias_for=transform-origin |
540 -webkit-transform-style alias_for=transform-style | 541 -webkit-transform-style alias_for=transform-style |
541 -webkit-transition alias_for=transition | 542 -webkit-transition alias_for=transition |
542 -webkit-transition-delay alias_for=transition-delay | 543 -webkit-transition-delay alias_for=transition-delay |
543 -webkit-transition-duration alias_for=transition-duration | 544 -webkit-transition-duration alias_for=transition-duration |
544 -webkit-transition-property alias_for=transition-property | 545 -webkit-transition-property alias_for=transition-property |
545 -webkit-transition-timing-function alias_for=transition-timing-function | 546 -webkit-transition-timing-function alias_for=transition-timing-function |
OLD | NEW |