Chromium Code Reviews| 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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 434 -webkit-text-fill-color inherited, custom_all | 434 -webkit-text-fill-color inherited, custom_all |
| 435 -webkit-text-security inherited | 435 -webkit-text-security inherited |
| 436 -webkit-text-stroke-color interpolable, inherited, custom_all | 436 -webkit-text-stroke-color interpolable, inherited, custom_all |
| 437 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth | 437 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth |
| 438 -webkit-transform-origin-x interpolable, converter=convertLength | 438 -webkit-transform-origin-x interpolable, converter=convertLength |
| 439 -webkit-transform-origin-y interpolable, converter=convertLength | 439 -webkit-transform-origin-y interpolable, converter=convertLength |
| 440 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> | 440 -webkit-transform-origin-z interpolable, converter=convertComputedLength<float> |
| 441 -webkit-user-drag | 441 -webkit-user-drag |
| 442 -webkit-user-modify inherited | 442 -webkit-user-modify inherited |
| 443 user-select inherited | 443 user-select inherited |
| 444 white-space inherited, independent | 444 white-space inherited, independent, keyword_only, keywords=[normal|pre|pre-wrap| pre-line|nowrap|-webkit-nowrap], initial_keyword=normal |
|
napper
2016/12/08 01:46:43
Please confirm that the keyword should be "-webkit
| |
| 445 widows interpolable, inherited, type_name=short | 445 widows interpolable, inherited, type_name=short |
| 446 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_ types=[Length], keywords=[auto], supports_percentage | 446 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_ types=[Length], keywords=[auto], supports_percentage |
| 447 will-change custom_all | 447 will-change custom_all |
| 448 word-break inherited | 448 word-break inherited |
| 449 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing | 449 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte r=convertSpacing |
| 450 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers. | 450 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope rty. So using the same handlers. |
| 451 word-wrap inherited, name_for_methods=OverflowWrap | 451 word-wrap inherited, name_for_methods=OverflowWrap |
| 452 z-index interpolable, type_name=int, custom_all | 452 z-index interpolable, type_name=int, custom_all |
| 453 | 453 |
| 454 // Non-standard direction aware properties | 454 // Non-standard direction aware properties |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 618 -webkit-text-size-adjust alias_for=text-size-adjust | 618 -webkit-text-size-adjust alias_for=text-size-adjust |
| 619 -webkit-transform alias_for=transform | 619 -webkit-transform alias_for=transform |
| 620 -webkit-transform-origin alias_for=transform-origin | 620 -webkit-transform-origin alias_for=transform-origin |
| 621 -webkit-transform-style alias_for=transform-style | 621 -webkit-transform-style alias_for=transform-style |
| 622 -webkit-transition alias_for=transition | 622 -webkit-transition alias_for=transition |
| 623 -webkit-transition-delay alias_for=transition-delay | 623 -webkit-transition-delay alias_for=transition-delay |
| 624 -webkit-transition-duration alias_for=transition-duration | 624 -webkit-transition-duration alias_for=transition-duration |
| 625 -webkit-transition-property alias_for=transition-property | 625 -webkit-transition-property alias_for=transition-property |
| 626 -webkit-transition-timing-function alias_for=transition-timing-function | 626 -webkit-transition-timing-function alias_for=transition-timing-function |
| 627 -webkit-user-select alias_for=user-select | 627 -webkit-user-select alias_for=user-select |
| OLD | NEW |