| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 -webkit-text-emphasis-style inherited, custom_all | 398 -webkit-text-emphasis-style inherited, custom_all |
| 399 -webkit-text-fill-color inherited, custom_all | 399 -webkit-text-fill-color inherited, custom_all |
| 400 -webkit-text-security inherited | 400 -webkit-text-security inherited |
| 401 -webkit-text-stroke-color interpolable, inherited, custom_all | 401 -webkit-text-stroke-color interpolable, inherited, custom_all |
| 402 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth | 402 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth |
| 403 -webkit-transform-origin-x interpolable, converter=convertLength | 403 -webkit-transform-origin-x interpolable, converter=convertLength |
| 404 -webkit-transform-origin-y interpolable, converter=convertLength | 404 -webkit-transform-origin-y interpolable, converter=convertLength |
| 405 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> | 405 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> |
| 406 -webkit-user-drag | 406 -webkit-user-drag |
| 407 -webkit-user-modify inherited | 407 -webkit-user-modify inherited |
| 408 -webkit-user-select inherited | 408 user-select inherited |
| 409 white-space inherited | 409 white-space inherited |
| 410 widows interpolable, inherited, type_name=short | 410 widows interpolable, inherited, type_name=short |
| 411 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage | 411 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage |
| 412 will-change custom_all | 412 will-change custom_all |
| 413 word-break inherited | 413 word-break inherited |
| 414 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 414 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
| 415 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 415 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 416 word-wrap inherited, name_for_methods=OverflowWrap | 416 word-wrap inherited, name_for_methods=OverflowWrap |
| 417 z-index interpolable, type_name=int, custom_all | 417 z-index interpolable, type_name=int, custom_all |
| 418 | 418 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 -webkit-shape-outside alias_for=shape-outside | 580 -webkit-shape-outside alias_for=shape-outside |
| 581 -webkit-text-size-adjust alias_for=text-size-adjust | 581 -webkit-text-size-adjust alias_for=text-size-adjust |
| 582 -webkit-transform alias_for=transform | 582 -webkit-transform alias_for=transform |
| 583 -webkit-transform-origin alias_for=transform-origin | 583 -webkit-transform-origin alias_for=transform-origin |
| 584 -webkit-transform-style alias_for=transform-style | 584 -webkit-transform-style alias_for=transform-style |
| 585 -webkit-transition alias_for=transition | 585 -webkit-transition alias_for=transition |
| 586 -webkit-transition-delay alias_for=transition-delay | 586 -webkit-transition-delay alias_for=transition-delay |
| 587 -webkit-transition-duration alias_for=transition-duration | 587 -webkit-transition-duration alias_for=transition-duration |
| 588 -webkit-transition-property alias_for=transition-property | 588 -webkit-transition-property alias_for=transition-property |
| 589 -webkit-transition-timing-function alias_for=transition-timing-function | 589 -webkit-transition-timing-function alias_for=transition-timing-function |
| 590 -webkit-user-select alias_for=user-select |
| OLD | NEW |