| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 345 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
| 346 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all | 346 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all |
| 347 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> | 347 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> |
| 348 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text
DecorationSkip, converter=convertFlags<TextDecorationSkip> | 348 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text
DecorationSkip, converter=convertFlags<TextDecorationSkip> |
| 349 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style | 349 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style |
| 350 text-indent interpolable, inherited, custom_all | 350 text-indent interpolable, inherited, custom_all |
| 351 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify | 351 text-justify runtime_flag=CSS3Text, inherited, type_name=TextJustify |
| 352 text-overflow type_name=TextOverflow | 352 text-overflow type_name=TextOverflow |
| 353 text-shadow interpolable, inherited, converter=convertShadow | 353 text-shadow interpolable, inherited, converter=convertShadow |
| 354 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA
djust | 354 text-size-adjust inherited, converter=convertTextSizeAdjust, type_name=TextSizeA
djust |
| 355 text-transform inherited | 355 text-transform inherited, keyword_only, keywords=[none|capitalize|uppercase|lowe
rcase] |
| 356 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition | 356 text-underline-position runtime_flag=CSS3TextDecorations, inherited, type_name=T
extUnderlinePosition |
| 357 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable,
initial=initialOffset, converter=convertLengthOrAuto | 357 top typedom_types=[Length], keywords=[auto], supports_percentage, interpolable,
initial=initialOffset, converter=convertLengthOrAuto |
| 358 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction | 358 touch-action converter=convertFlags<TouchAction>, type_name=TouchAction |
| 359 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co
nvertTransformOperations | 359 transform typedom_types=[Transform], keywords=[none], interpolable, converter=co
nvertTransformOperations |
| 360 transform-origin interpolable, converter=convertTransformOrigin | 360 transform-origin interpolable, converter=convertTransformOrigin |
| 361 transform-style name_for_methods=TransformStyle3D | 361 transform-style name_for_methods=TransformStyle3D |
| 362 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans
late, interpolable | 362 translate runtime_flag=CSSIndependentTransformProperties, converter=convertTrans
late, interpolable |
| 363 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate,
interpolable | 363 rotate runtime_flag=CSSIndependentTransformProperties, converter=convertRotate,
interpolable |
| 364 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in
terpolable | 364 scale runtime_flag=CSSIndependentTransformProperties, converter=convertScale, in
terpolable |
| 365 unicode-bidi | 365 unicode-bidi |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 -webkit-text-size-adjust alias_for=text-size-adjust | 611 -webkit-text-size-adjust alias_for=text-size-adjust |
| 612 -webkit-transform alias_for=transform | 612 -webkit-transform alias_for=transform |
| 613 -webkit-transform-origin alias_for=transform-origin | 613 -webkit-transform-origin alias_for=transform-origin |
| 614 -webkit-transform-style alias_for=transform-style | 614 -webkit-transform-style alias_for=transform-style |
| 615 -webkit-transition alias_for=transition | 615 -webkit-transition alias_for=transition |
| 616 -webkit-transition-delay alias_for=transition-delay | 616 -webkit-transition-delay alias_for=transition-delay |
| 617 -webkit-transition-duration alias_for=transition-duration | 617 -webkit-transition-duration alias_for=transition-duration |
| 618 -webkit-transition-property alias_for=transition-property | 618 -webkit-transition-property alias_for=transition-property |
| 619 -webkit-transition-timing-function alias_for=transition-timing-function | 619 -webkit-transition-timing-function alias_for=transition-timing-function |
| 620 -webkit-user-select alias_for=user-select | 620 -webkit-user-select alias_for=user-select |
| OLD | NEW |