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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSValueKeywords.json5

Issue 2750843002: [css-align] Adapt content-alignment properties to the new baseline syntax (Closed)
Patch Set: Don't use raw pointers attributes on a GC managed class. Created 3 years, 9 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 // The mode argument is used to limit the keyword to be used only for certain 2 // The mode argument is used to limit the keyword to be used only for certain
3 // CSSParserModes. Values that have the prefix -internal- are only allowed by 3 // CSSParserModes. Values that have the prefix -internal- are only allowed by
4 // CSSParserModes listed in allowInternalPropertyAndValue() 4 // CSSParserModes listed in allowInternalPropertyAndValue()
5 5
6 parameters: { 6 parameters: {
7 mode: {}, 7 mode: {},
8 }, 8 },
9 9
10 // 10 //
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 "pan-up", 977 "pan-up",
978 "pan-down", 978 "pan-down",
979 "manipulation", 979 "manipulation",
980 "pinch-zoom", 980 "pinch-zoom",
981 981
982 // justify-items / justify-self 982 // justify-items / justify-self
983 // auto 983 // auto
984 // stretch 984 // stretch
985 // baseline 985 // baseline
986 "last-baseline", 986 "last-baseline",
987 "first-baseline",
987 "first", 988 "first",
988 "last", 989 "last",
989 // center 990 // center
990 // start 991 // start
991 // end 992 // end
992 "self-start", 993 "self-start",
993 "self-end", 994 "self-end",
994 // flex-start 995 // flex-start
995 // flex-end 996 // flex-end
996 // left 997 // left
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 // shape 1126 // shape
1126 // rect 1127 // rect
1127 // round 1128 // round
1128 1129
1129 // color-gamut 1130 // color-gamut
1130 // srgb 1131 // srgb
1131 "p3", 1132 "p3",
1132 "rec2020", 1133 "rec2020",
1133 ], 1134 ],
1134 } 1135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698