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

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

Issue 2775103002: Conic gradient parsing support (Closed)
Patch Set: review Created 3 years, 8 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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 1009
1010 // all 1010 // all
1011 // initial 1011 // initial
1012 // inherit 1012 // inherit
1013 "revert", 1013 "revert",
1014 "unset", 1014 "unset",
1015 1015
1016 // background-image, etc. 1016 // background-image, etc.
1017 "linear-gradient", 1017 "linear-gradient",
1018 "radial-gradient", 1018 "radial-gradient",
1019 "conic-gradient",
1019 "repeating-linear-gradient", 1020 "repeating-linear-gradient",
1020 "repeating-radial-gradient", 1021 "repeating-radial-gradient",
1022 "repeating-conic-gradient",
1021 "paint", 1023 "paint",
1022 "-webkit-cross-fade", 1024 "-webkit-cross-fade",
1023 "-webkit-gradient", 1025 "-webkit-gradient",
1024 "-webkit-linear-gradient", 1026 "-webkit-linear-gradient",
1025 "-webkit-radial-gradient", 1027 "-webkit-radial-gradient",
1026 "-webkit-repeating-linear-gradient", 1028 "-webkit-repeating-linear-gradient",
1027 "-webkit-repeating-radial-gradient", 1029 "-webkit-repeating-radial-gradient",
1028 "-webkit-image-set", 1030 "-webkit-image-set",
1029 1031
1030 // deprecated gradients 1032 // deprecated gradients
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 // shape 1126 // shape
1125 // rect 1127 // rect
1126 // round 1128 // round
1127 1129
1128 // color-gamut 1130 // color-gamut
1129 // srgb 1131 // srgb
1130 "p3", 1132 "p3",
1131 "rec2020", 1133 "rec2020",
1132 ], 1134 ],
1133 } 1135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698