| OLD | NEW |
| 1 // | 1 // |
| 2 // CSS value names | 2 // CSS value names |
| 3 // | 3 // |
| 4 | 4 |
| 5 // The mode argument is used to limit the keyword to be used only for certain | 5 // The mode argument is used to limit the keyword to be used only for certain |
| 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by | 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by |
| 7 // CSSParserModes listed in allowInternalPropertyAndValue() | 7 // CSSParserModes listed in allowInternalPropertyAndValue() |
| 8 | 8 |
| 9 inherit | 9 inherit |
| 10 initial | 10 initial |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 // text-rendering | 662 // text-rendering |
| 663 //auto | 663 //auto |
| 664 optimizeSpeed | 664 optimizeSpeed |
| 665 optimizeLegibility | 665 optimizeLegibility |
| 666 geometricPrecision | 666 geometricPrecision |
| 667 | 667 |
| 668 // -webkit-color-adjust | 668 // -webkit-color-adjust |
| 669 economy | 669 economy |
| 670 exact | 670 exact |
| 671 | 671 |
| 672 // -webkit-writing-mode | |
| 673 // SVG compatibility | |
| 674 lr | |
| 675 rl | |
| 676 tb | |
| 677 lr-tb | |
| 678 rl-tb | |
| 679 tb-rl | |
| 680 // Standard values from CSS3 | |
| 681 horizontal-tb | |
| 682 vertical-rl | |
| 683 vertical-lr | |
| 684 horizontal-bt | |
| 685 | |
| 686 // -webkit-text-emphasis-position | 672 // -webkit-text-emphasis-position |
| 687 over | 673 over |
| 688 under | 674 under |
| 689 | 675 |
| 690 // -webkit-text-emphasis-style | 676 // -webkit-text-emphasis-style |
| 691 filled | 677 filled |
| 692 open | 678 open |
| 693 dot | 679 dot |
| 694 // circle | 680 // circle |
| 695 double-circle | 681 double-circle |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 | 827 |
| 842 // will-change | 828 // will-change |
| 843 // auto | 829 // auto |
| 844 contents | 830 contents |
| 845 scroll-position | 831 scroll-position |
| 846 | 832 |
| 847 // all | 833 // all |
| 848 // initial | 834 // initial |
| 849 // inherit | 835 // inherit |
| 850 unset | 836 unset |
| OLD | NEW |