| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 -webkit-text-fill-color inherited, custom_all | 428 -webkit-text-fill-color inherited, custom_all |
| 429 -webkit-text-security inherited | 429 -webkit-text-security inherited |
| 430 -webkit-text-stroke-color interpolable, inherited, custom_all | 430 -webkit-text-stroke-color interpolable, inherited, custom_all |
| 431 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth | 431 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth |
| 432 -webkit-transform-origin-x interpolable, converter=convertLength | 432 -webkit-transform-origin-x interpolable, converter=convertLength |
| 433 -webkit-transform-origin-y interpolable, converter=convertLength | 433 -webkit-transform-origin-y interpolable, converter=convertLength |
| 434 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> | 434 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> |
| 435 -webkit-user-drag | 435 -webkit-user-drag |
| 436 -webkit-user-modify inherited | 436 -webkit-user-modify inherited |
| 437 user-select inherited | 437 user-select inherited |
| 438 white-space inherited | 438 white-space inherited, independent |
| 439 widows interpolable, inherited, type_name=short | 439 widows interpolable, inherited, type_name=short |
| 440 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage | 440 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage |
| 441 will-change custom_all | 441 will-change custom_all |
| 442 word-break inherited | 442 word-break inherited |
| 443 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 443 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
| 444 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 444 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
| 445 word-wrap inherited, name_for_methods=OverflowWrap | 445 word-wrap inherited, name_for_methods=OverflowWrap |
| 446 z-index interpolable, type_name=int, custom_all | 446 z-index interpolable, type_name=int, custom_all |
| 447 | 447 |
| 448 // Non-standard direction aware properties | 448 // Non-standard direction aware properties |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 -webkit-text-size-adjust alias_for=text-size-adjust | 612 -webkit-text-size-adjust alias_for=text-size-adjust |
| 613 -webkit-transform alias_for=transform | 613 -webkit-transform alias_for=transform |
| 614 -webkit-transform-origin alias_for=transform-origin | 614 -webkit-transform-origin alias_for=transform-origin |
| 615 -webkit-transform-style alias_for=transform-style | 615 -webkit-transform-style alias_for=transform-style |
| 616 -webkit-transition alias_for=transition | 616 -webkit-transition alias_for=transition |
| 617 -webkit-transition-delay alias_for=transition-delay | 617 -webkit-transition-delay alias_for=transition-delay |
| 618 -webkit-transition-duration alias_for=transition-duration | 618 -webkit-transition-duration alias_for=transition-duration |
| 619 -webkit-transition-property alias_for=transition-property | 619 -webkit-transition-property alias_for=transition-property |
| 620 -webkit-transition-timing-function alias_for=transition-timing-function | 620 -webkit-transition-timing-function alias_for=transition-timing-function |
| 621 -webkit-user-select alias_for=user-select | 621 -webkit-user-select alias_for=user-select |
| OLD | NEW |