| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 table-layout | 332 table-layout |
| 333 tab-size inherited, converter=convertLengthOrTabSpaces, type_name=TabSize | 333 tab-size inherited, converter=convertLengthOrTabSpaces, type_name=TabSize |
| 334 text-align inherited, custom_value | 334 text-align inherited, custom_value |
| 335 text-align-last inherited, type_name=TextAlignLast | 335 text-align-last inherited, type_name=TextAlignLast |
| 336 text-anchor inherited, svg | 336 text-anchor inherited, svg |
| 337 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb
ine | 337 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb
ine |
| 338 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag | 338 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag |
| 339 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 339 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
| 340 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all | 340 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all |
| 341 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> | 341 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> |
| 342 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text
DecorationSkip, converter=convertFlags<TextDecorationSkip> |
| 342 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style | 343 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style |
| 343 text-indent interpolable, inherited, custom_all | 344 text-indent interpolable, inherited, custom_all |
| 344 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify | 345 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify |
| 345 text-overflow type_name=TextOverflow | 346 text-overflow type_name=TextOverflow |
| 346 text-shadow interpolable, inherited, converter=convertShadow | 347 text-shadow interpolable, inherited, converter=convertShadow |
| 347 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA
djust | 348 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA
djust |
| 348 text-transform inherited | 349 text-transform inherited |
| 349 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition | 350 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition |
| 350 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable,
initial=initialOffset, converter=convertLengthOrAuto | 351 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable,
initial=initialOffset, converter=convertLengthOrAuto |
| 351 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction | 352 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 -webkit-text-size-adjust alias_for=text-size-adjust | 609 -webkit-text-size-adjust alias_for=text-size-adjust |
| 609 -webkit-transform alias_for=transform | 610 -webkit-transform alias_for=transform |
| 610 -webkit-transform-origin alias_for=transform-origin | 611 -webkit-transform-origin alias_for=transform-origin |
| 611 -webkit-transform-style alias_for=transform-style | 612 -webkit-transform-style alias_for=transform-style |
| 612 -webkit-transition alias_for=transition | 613 -webkit-transition alias_for=transition |
| 613 -webkit-transition-delay alias_for=transition-delay | 614 -webkit-transition-delay alias_for=transition-delay |
| 614 -webkit-transition-duration alias_for=transition-duration | 615 -webkit-transition-duration alias_for=transition-duration |
| 615 -webkit-transition-property alias_for=transition-property | 616 -webkit-transition-property alias_for=transition-property |
| 616 -webkit-transition-timing-function alias_for=transition-timing-function | 617 -webkit-transition-timing-function alias_for=transition-timing-function |
| 617 -webkit-user-select alias_for=user-select | 618 -webkit-user-select alias_for=user-select |
| OLD | NEW |