| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all | 361 stroke interpolable, inherited, svg, setter=setStrokePaint, custom_all |
| 362 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray,
converter=convertStrokeDasharray | 362 stroke-dasharray interpolable, inherited, svg, name_for_methods=StrokeDashArray,
converter=convertStrokeDasharray |
| 363 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse
t, converter=convertLength | 363 stroke-dashoffset interpolable, inherited, svg, name_for_methods=StrokeDashOffse
t, converter=convertLength |
| 364 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle | 364 stroke-linecap svg, inherited, type_name=LineCap, name_for_methods=CapStyle |
| 365 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle | 365 stroke-linejoin svg, inherited, type_name=LineJoin, name_for_methods=JoinStyle |
| 366 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method
s=StrokeMiterLimit | 366 stroke-miterlimit interpolable, inherited, svg, type_name=float, name_for_method
s=StrokeMiterLimit |
| 367 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage | 367 stroke-opacity interpolable, inherited, svg, converter=convertNumberOrPercentage |
| 368 stroke-width interpolable, inherited, svg, converter=convertUnzoomedLength | 368 stroke-width interpolable, inherited, svg, converter=convertUnzoomedLength |
| 369 table-layout | 369 table-layout |
| 370 tab-size inherited, converter=convertLengthOrTabSpaces, type_name=TabSize | 370 tab-size inherited, converter=convertLengthOrTabSpaces, type_name=TabSize |
| 371 text-align inherited, custom_value, keyword_only, keywords=[left|right|center|ju
stify|webkitLeft|webkitRight|webkitCenter|start|end], initial_keyword=start | 371 text-align inherited, custom_value, keyword_only, keywords=[left|right|center|ju
stify|-webkit-left|-webkit-right|-webkit-center|start|end], initial_keyword=star
t |
| 372 text-align-last inherited, type_name=TextAlignLast | 372 text-align-last inherited, type_name=TextAlignLast |
| 373 text-anchor inherited, svg | 373 text-anchor inherited, svg |
| 374 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb
ine | 374 text-combine-upright inherited, type_name=TextCombine, name_for_methods=TextComb
ine |
| 375 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag | 375 // FIXME: We shouldn't switch between shorthand/not shorthand based on a runtime
flag |
| 376 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color | 376 text-decoration use_handlers_for=CSSPropertyTextDecorationLine, longhands=text-d
ecoration-line;text-decoration-style;text-decoration-color |
| 377 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all
, api_class | 377 text-decoration-color runtime_flag=CSS3TextDecorations, interpolable, custom_all
, api_class |
| 378 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> | 378 text-decoration-line runtime_flag=CSS3TextDecorations, name_for_methods=TextDeco
ration, type_name=TextDecoration, converter=convertFlags<TextDecoration> |
| 379 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text
DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class | 379 text-decoration-skip runtime_flag=CSS3TextDecorations, inherited, type_name=Text
DecorationSkip, converter=convertFlags<TextDecorationSkip>, api_class |
| 380 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style | 380 text-decoration-style runtime_flag=CSS3TextDecorations, type_name=TextDecoration
Style |
| 381 text-indent interpolable, inherited, custom_all | 381 text-indent interpolable, inherited, custom_all |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 -webkit-text-size-adjust alias_for=text-size-adjust | 650 -webkit-text-size-adjust alias_for=text-size-adjust |
| 651 -webkit-transform alias_for=transform | 651 -webkit-transform alias_for=transform |
| 652 -webkit-transform-origin alias_for=transform-origin | 652 -webkit-transform-origin alias_for=transform-origin |
| 653 -webkit-transform-style alias_for=transform-style | 653 -webkit-transform-style alias_for=transform-style |
| 654 -webkit-transition alias_for=transition | 654 -webkit-transition alias_for=transition |
| 655 -webkit-transition-delay alias_for=transition-delay | 655 -webkit-transition-delay alias_for=transition-delay |
| 656 -webkit-transition-duration alias_for=transition-duration | 656 -webkit-transition-duration alias_for=transition-duration |
| 657 -webkit-transition-property alias_for=transition-property | 657 -webkit-transition-property alias_for=transition-property |
| 658 -webkit-transition-timing-function alias_for=transition-timing-function | 658 -webkit-transition-timing-function alias_for=transition-timing-function |
| 659 -webkit-user-select alias_for=user-select | 659 -webkit-user-select alias_for=user-select |
| OLD | NEW |