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 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 white-space inherited, independent, keyword_only, keywords=[normal|pre|pre-wrap|
pre-line|nowrap|-webkit-nowrap], initial_keyword=normal | 457 white-space inherited, independent, keyword_only, keywords=[normal|pre|pre-wrap|
pre-line|nowrap|-webkit-nowrap], initial_keyword=normal |
458 widows interpolable, inherited, type_name=short | 458 widows interpolable, inherited, type_name=short |
459 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage | 459 width interpolable, initial=initialSize, converter=convertLengthSizing, typedom_
types=[Length], keywords=[auto], supports_percentage |
460 will-change custom_all | 460 will-change custom_all |
461 word-break inherited | 461 word-break inherited |
462 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing | 462 word-spacing interpolable, inherited, initial=initialLetterWordSpacing, converte
r=convertSpacing |
463 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. | 463 // UAs must treat 'word-wrap' as an alternate name for the 'overflow-wrap' prope
rty. So using the same handlers. |
464 word-wrap inherited, name_for_methods=OverflowWrap | 464 word-wrap inherited, name_for_methods=OverflowWrap |
465 z-index interpolable, type_name=int, custom_all | 465 z-index interpolable, type_name=int, custom_all |
466 | 466 |
| 467 // CSS logical props |
| 468 inline-size direction_aware |
| 469 block-size direction_aware |
| 470 min-inline-size direction_aware |
| 471 min-block-size direction_aware |
| 472 max-inline-size direction_aware |
| 473 max-block-size direction_aware |
| 474 |
467 // Non-standard direction aware properties | 475 // Non-standard direction aware properties |
468 | 476 |
469 -webkit-border-end-color direction_aware | 477 -webkit-border-end-color direction_aware |
470 -webkit-border-end-style direction_aware | 478 -webkit-border-end-style direction_aware |
471 -webkit-border-end-width direction_aware | 479 -webkit-border-end-width direction_aware |
472 -webkit-border-start-color direction_aware | 480 -webkit-border-start-color direction_aware |
473 -webkit-border-start-style direction_aware | 481 -webkit-border-start-style direction_aware |
474 -webkit-border-start-width direction_aware | 482 -webkit-border-start-width direction_aware |
475 -webkit-border-before-color direction_aware | 483 -webkit-border-before-color direction_aware |
476 -webkit-border-before-style direction_aware | 484 -webkit-border-before-style direction_aware |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 -webkit-text-size-adjust alias_for=text-size-adjust | 639 -webkit-text-size-adjust alias_for=text-size-adjust |
632 -webkit-transform alias_for=transform | 640 -webkit-transform alias_for=transform |
633 -webkit-transform-origin alias_for=transform-origin | 641 -webkit-transform-origin alias_for=transform-origin |
634 -webkit-transform-style alias_for=transform-style | 642 -webkit-transform-style alias_for=transform-style |
635 -webkit-transition alias_for=transition | 643 -webkit-transition alias_for=transition |
636 -webkit-transition-delay alias_for=transition-delay | 644 -webkit-transition-delay alias_for=transition-delay |
637 -webkit-transition-duration alias_for=transition-duration | 645 -webkit-transition-duration alias_for=transition-duration |
638 -webkit-transition-property alias_for=transition-property | 646 -webkit-transition-property alias_for=transition-property |
639 -webkit-transition-timing-function alias_for=transition-timing-function | 647 -webkit-transition-timing-function alias_for=transition-timing-function |
640 -webkit-user-select alias_for=user-select | 648 -webkit-user-select alias_for=user-select |
OLD | NEW |