@@ -210,15 +210,15 @@ test("child and adjacent", function() {
210
210
t ( "Child w/ Class" , "p > a.blog" , [ "mark" , "simon" ] ) ;
211
211
t ( "All Children" , "code > *" , [ "anchor1" , "anchor2" ] ) ;
212
212
t ( "All Grandchildren" , "p > * > *" , [ "anchor1" , "anchor2" ] ) ;
213
- t ( "Adjacent" , "a + a" , [ "groups" ] ) ;
214
- t ( "Adjacent" , "a +a" , [ "groups" ] ) ;
215
- t ( "Adjacent" , "a+ a" , [ "groups" ] ) ;
216
- t ( "Adjacent" , "a+a" , [ "groups" ] ) ;
213
+ t ( "Adjacent" , "#main a + a" , [ "groups" ] ) ;
214
+ t ( "Adjacent" , "#main a +a" , [ "groups" ] ) ;
215
+ t ( "Adjacent" , "#main a+ a" , [ "groups" ] ) ;
216
+ t ( "Adjacent" , "#main a+a" , [ "groups" ] ) ;
217
217
t ( "Adjacent" , "p + p" , [ "ap" , "en" , "sap" ] ) ;
218
218
t ( "Adjacent" , "p#firstp + p" , [ "ap" ] ) ;
219
219
t ( "Adjacent" , "p[lang=en] + p" , [ "sap" ] ) ;
220
220
t ( "Adjacent" , "a.GROUPS + code + a" , [ "mark" ] ) ;
221
- t ( "Comma, Child, and Adjacent" , "a + a, code > a" , [ "groups" , "anchor1" , "anchor2" ] ) ;
221
+ t ( "Comma, Child, and Adjacent" , "#main a + a, code > a" , [ "groups" , "anchor1" , "anchor2" ] ) ;
222
222
t ( "Element Preceded By" , "p ~ div" , [ "foo" , "moretests" , "tabindex-tests" , "liveHandlerOrder" , "siblingTest" ] ) ;
223
223
t ( "Element Preceded By" , "#first ~ div" , [ "moretests" , "tabindex-tests" , "liveHandlerOrder" , "siblingTest" ] ) ;
224
224
t ( "Element Preceded By" , "#groups ~ a" , [ "mark" ] ) ;
0 commit comments