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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 // border/content/padding are deprecated and ultimately will only apply to the -
webkit- form of these properties. | 691 // border/content/padding are deprecated and ultimately will only apply to the -
webkit- form of these properties. |
692 // border-box/content-box/padding-box should be used instead. | 692 // border-box/content-box/padding-box should be used instead. |
693 // | 693 // |
694 border | 694 border |
695 border-box | 695 border-box |
696 content | 696 content |
697 content-box | 697 content-box |
698 padding | 698 padding |
699 padding-box | 699 padding-box |
700 | 700 |
| 701 // CSS 3 Directional Focus Navigation |
| 702 current |
| 703 root |
| 704 |
701 // CSS 3 SHAPES | 705 // CSS 3 SHAPES |
702 margin-box | 706 margin-box |
703 | 707 |
704 // | 708 // |
705 // background-size | 709 // background-size |
706 // | 710 // |
707 contain | 711 contain |
708 cover | 712 cover |
709 | 713 |
710 // | 714 // |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 | 994 |
991 // will-change | 995 // will-change |
992 // auto | 996 // auto |
993 contents | 997 contents |
994 scroll-position | 998 scroll-position |
995 | 999 |
996 // all | 1000 // all |
997 // initial | 1001 // initial |
998 // inherit | 1002 // inherit |
999 unset | 1003 unset |
OLD | NEW |