We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04adab2 commit 62ea904Copy full SHA for 62ea904
test/test-cases.js
@@ -186,15 +186,19 @@ module.exports = {
186
],
187
188
"operators": [
189
- "a > .class-name~.x123+ div",
+ "a > .class-name~.x123+ div >> col || td",
190
singleSelector([
191
{ type: "element", name: "a" },
192
{ type: "operator", operator: ">", before: " ", after: " " },
193
{ type: "class", name: "class-name" },
194
{ type: "operator", operator: "~" },
195
{ type: "class", name: "x123" },
196
{ type: "operator", operator: "+", after: " " },
197
- { type: "element", name: "div" }
+ { type: "element", name: "div" },
198
+ { type: "operator", operator: ">>", before: " ", after: " " },
199
+ { type: "element", name: "col" },
200
+ { type: "operator", operator: "||", before: " ", after: " " },
201
+ { type: "element", name: "td" }
202
])
203
204
0 commit comments