| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 column | 529 column |
| 530 column-reverse | 530 column-reverse |
| 531 // nowrap | 531 // nowrap |
| 532 wrap | 532 wrap |
| 533 wrap-reverse | 533 wrap-reverse |
| 534 | 534 |
| 535 // grid-auto-flow | 535 // grid-auto-flow |
| 536 dense | 536 dense |
| 537 stack | 537 stack |
| 538 | 538 |
| 539 // -internal-marquee-direction | |
| 540 forwards | |
| 541 backwards | |
| 542 ahead | |
| 543 // reverse | |
| 544 // left | |
| 545 // right | |
| 546 up | |
| 547 down | |
| 548 // auto | |
| 549 | |
| 550 // -internal-marquee-repetition | |
| 551 infinite | |
| 552 | |
| 553 // -internal-marquee-style | |
| 554 // none | |
| 555 slide | |
| 556 // scroll | |
| 557 alternate | |
| 558 | |
| 559 // | 539 // |
| 560 // -webkit-user-modify | 540 // -webkit-user-modify |
| 561 // | 541 // |
| 562 read-only | 542 read-only |
| 563 read-write | 543 read-write |
| 564 read-write-plaintext-only | 544 read-write-plaintext-only |
| 565 | 545 |
| 566 // | 546 // |
| 567 // -webkit-user-drag | 547 // -webkit-user-drag |
| 568 // | 548 // |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 | 689 |
| 710 // | 690 // |
| 711 // -webkit-rtl-ordering | 691 // -webkit-rtl-ordering |
| 712 // | 692 // |
| 713 logical | 693 logical |
| 714 visual | 694 visual |
| 715 | 695 |
| 716 // | 696 // |
| 717 // animation-direction | 697 // animation-direction |
| 718 // | 698 // |
| 719 // alternate | 699 alternate |
| 720 | |
| 721 alternate-reverse | 700 alternate-reverse |
| 722 | 701 |
| 723 // | 702 // |
| 724 // animation-fill-mode | 703 // animation-fill-mode |
| 725 // | 704 // |
| 726 // forwards | 705 forwards |
| 727 // backwards | 706 backwards |
| 728 // both | 707 // both |
| 729 | 708 |
| 730 // | 709 // |
| 731 // animation-iteration-count | 710 // animation-iteration-count |
| 732 // | 711 infinite |
| 733 // infinite | |
| 734 | 712 |
| 735 // | 713 // |
| 736 // animation-play-state | 714 // animation-play-state |
| 737 // | 715 // |
| 738 running | 716 running |
| 739 paused | 717 paused |
| 740 | 718 |
| 741 // | 719 // |
| 742 // transform-style | 720 // transform-style |
| 743 // | 721 // |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1067 skewx | 1045 skewx |
| 1068 skewy | 1046 skewy |
| 1069 translate | 1047 translate |
| 1070 translatex | 1048 translatex |
| 1071 translatey | 1049 translatey |
| 1072 translatez | 1050 translatez |
| 1073 translate3d | 1051 translate3d |
| 1074 | 1052 |
| 1075 calc | 1053 calc |
| 1076 -webkit-calc | 1054 -webkit-calc |
| OLD | NEW |