Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: Source/core/css/CSSValueKeywords.in

Issue 333423005: [CSS Grid Layout] Implement 'justify-items' parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 958 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 969
970 // touch-action-delay 970 // touch-action-delay
971 // none 971 // none
972 script 972 script
973 973
974 // touch-action 974 // touch-action
975 pan-x 975 pan-x
976 pan-y 976 pan-y
977 manipulation 977 manipulation
978 978
979 // justify-self 979 // justify-items / justify-self
980 // auto 980 // auto
981 // stretch 981 // stretch
982 // baseline 982 // baseline
983 // center 983 // center
984 // start 984 // start
985 // end 985 // end
986 self-start 986 self-start
987 self-end 987 self-end
988 // flex-start 988 // flex-start
989 // flex-end 989 // flex-end
990 // left 990 // left
991 // right 991 // right
992 true 992 true
993 safe 993 safe
994 legacy
994 995
995 // scroll-behavior 996 // scroll-behavior
996 instant 997 instant
997 smooth 998 smooth
998 999
999 // will-change 1000 // will-change
1000 // auto 1001 // auto
1001 contents 1002 contents
1002 scroll-position 1003 scroll-position
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698