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

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

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ Created 3 years, 7 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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after
1093 "scale3d", 1093 "scale3d",
1094 "skew", 1094 "skew",
1095 "skewX", 1095 "skewX",
1096 "skewY", 1096 "skewY",
1097 "translate", 1097 "translate",
1098 "translateX", 1098 "translateX",
1099 "translateY", 1099 "translateY",
1100 "translateZ", 1100 "translateZ",
1101 "translate3d", 1101 "translate3d",
1102 1102
1103 // motion path 1103 // offset-path
1104 "path", 1104 "path",
1105 "ray",
1106 "sides",
1105 1107
1106 "calc", 1108 "calc",
1107 "-webkit-calc", 1109 "-webkit-calc",
1108 1110
1109 // scroll-snap-type 1111 // scroll-snap-type
1110 // none 1112 // none
1111 "mandatory", 1113 "mandatory",
1112 "proximity", 1114 "proximity",
1113 "from-image", 1115 "from-image",
1114 1116
(...skipping 20 matching lines...) Expand all
1135 // shape 1137 // shape
1136 // rect 1138 // rect
1137 // round 1139 // round
1138 1140
1139 // color-gamut 1141 // color-gamut
1140 // srgb 1142 // srgb
1141 "p3", 1143 "p3",
1142 "rec2020", 1144 "rec2020",
1143 ], 1145 ],
1144 } 1146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698