traversing.js 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. module("traversing", { teardown: moduleTeardown });
  2. test("find(String)", function() {
  3. expect(5);
  4. equal( "Yahoo", jQuery("#foo").find(".blogTest").text(), "Check for find" );
  5. // using contents will get comments regular, text, and comment nodes
  6. var j = jQuery("#nonnodes").contents();
  7. equal( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
  8. deepEqual( jQuery("#qunit-fixture").find("> div").get(), q("foo", "moretests", "tabindex-tests", "liveHandlerOrder", "siblingTest"), "find child elements" );
  9. deepEqual( jQuery("#qunit-fixture").find("> #foo, > #moretests").get(), q("foo", "moretests"), "find child elements" );
  10. deepEqual( jQuery("#qunit-fixture").find("> #foo > p").get(), q("sndp", "en", "sap"), "find child elements" );
  11. });
  12. test("find(node|jQuery object)", function() {
  13. expect( 11 );
  14. var $foo = jQuery("#foo"),
  15. $blog = jQuery(".blogTest"),
  16. $first = jQuery("#first"),
  17. $two = $blog.add( $first ),
  18. $fooTwo = $foo.add( $blog );
  19. equal( $foo.find( $blog ).text(), "Yahoo", "Find with blog jQuery object" );
  20. equal( $foo.find( $blog[0] ).text(), "Yahoo", "Find with blog node" );
  21. equal( $foo.find( $first ).length, 0, "#first is not in #foo" );
  22. equal( $foo.find( $first[0]).length, 0, "#first not in #foo (node)" );
  23. ok( $foo.find( $two ).is(".blogTest"), "Find returns only nodes within #foo" );
  24. ok( $fooTwo.find( $blog ).is(".blogTest"), "Blog is part of the collection, but also within foo" );
  25. ok( $fooTwo.find( $blog[0] ).is(".blogTest"), "Blog is part of the collection, but also within foo(node)" );
  26. equal( $two.find( $foo ).length, 0, "Foo is not in two elements" );
  27. equal( $two.find( $foo[0] ).length, 0, "Foo is not in two elements(node)" );
  28. equal( $two.find( $first ).length, 0, "first is in the collection and not within two" );
  29. equal( $two.find( $first ).length, 0, "first is in the collection and not within two(node)" );
  30. });
  31. test("is(String|undefined)", function() {
  32. expect(29);
  33. ok( jQuery("#form").is("form"), "Check for element: A form must be a form" );
  34. ok( !jQuery("#form").is("div"), "Check for element: A form is not a div" );
  35. ok( jQuery("#mark").is(".blog"), "Check for class: Expected class 'blog'" );
  36. ok( !jQuery("#mark").is(".link"), "Check for class: Did not expect class 'link'" );
  37. ok( jQuery("#simon").is(".blog.link"), "Check for multiple classes: Expected classes 'blog' and 'link'" );
  38. ok( !jQuery("#simon").is(".blogTest"), "Check for multiple classes: Expected classes 'blog' and 'link', but not 'blogTest'" );
  39. ok( jQuery("#en").is("[lang=\"en\"]"), "Check for attribute: Expected attribute lang to be 'en'" );
  40. ok( !jQuery("#en").is("[lang=\"de\"]"), "Check for attribute: Expected attribute lang to be 'en', not 'de'" );
  41. ok( jQuery("#text1").is("[type=\"text\"]"), "Check for attribute: Expected attribute type to be 'text'" );
  42. ok( !jQuery("#text1").is("[type=\"radio\"]"), "Check for attribute: Expected attribute type to be 'text', not 'radio'" );
  43. ok( jQuery("#text2").is(":disabled"), "Check for pseudoclass: Expected to be disabled" );
  44. ok( !jQuery("#text1").is(":disabled"), "Check for pseudoclass: Expected not disabled" );
  45. ok( jQuery("#radio2").is(":checked"), "Check for pseudoclass: Expected to be checked" );
  46. ok( !jQuery("#radio1").is(":checked"), "Check for pseudoclass: Expected not checked" );
  47. ok( jQuery("#foo").is(":has(p)"), "Check for child: Expected a child 'p' element" );
  48. ok( !jQuery("#foo").is(":has(ul)"), "Check for child: Did not expect 'ul' element" );
  49. ok( jQuery("#foo").is(":has(p):has(a):has(code)"), "Check for childs: Expected 'p', 'a' and 'code' child elements" );
  50. ok( !jQuery("#foo").is(":has(p):has(a):has(code):has(ol)"), "Check for childs: Expected 'p', 'a' and 'code' child elements, but no 'ol'" );
  51. ok( !jQuery("#foo").is(0), "Expected false for an invalid expression - 0" );
  52. ok( !jQuery("#foo").is(null), "Expected false for an invalid expression - null" );
  53. ok( !jQuery("#foo").is(""), "Expected false for an invalid expression - \"\"" );
  54. ok( !jQuery("#foo").is(undefined), "Expected false for an invalid expression - undefined" );
  55. ok( !jQuery("#foo").is({ plain: "object" }), "Check passing invalid object" );
  56. // test is() with comma-seperated expressions
  57. ok( jQuery("#en").is("[lang=\"en\"],[lang=\"de\"]"), "Comma-seperated; Check for lang attribute: Expect en or de" );
  58. ok( jQuery("#en").is("[lang=\"de\"],[lang=\"en\"]"), "Comma-seperated; Check for lang attribute: Expect en or de" );
  59. ok( jQuery("#en").is("[lang=\"en\"] , [lang=\"de\"]"), "Comma-seperated; Check for lang attribute: Expect en or de" );
  60. ok( jQuery("#en").is("[lang=\"de\"] , [lang=\"en\"]"), "Comma-seperated; Check for lang attribute: Expect en or de" );
  61. ok( !jQuery(window).is('a'), "Checking is on a window does not throw an exception(#10178)" );
  62. ok( !jQuery(document).is('a'), "Checking is on a document does not throw an exception(#10178)" );
  63. });
  64. test("is(jQuery)", function() {
  65. expect(21);
  66. ok( jQuery("#form").is( jQuery("form") ), "Check for element: A form is a form" );
  67. ok( !jQuery("#form").is( jQuery("div") ), "Check for element: A form is not a div" );
  68. ok( jQuery("#mark").is( jQuery(".blog") ), "Check for class: Expected class 'blog'" );
  69. ok( !jQuery("#mark").is( jQuery(".link") ), "Check for class: Did not expect class 'link'" );
  70. ok( jQuery("#simon").is( jQuery(".blog.link") ), "Check for multiple classes: Expected classes 'blog' and 'link'" );
  71. ok( !jQuery("#simon").is( jQuery(".blogTest") ), "Check for multiple classes: Expected classes 'blog' and 'link', but not 'blogTest'" );
  72. ok( jQuery("#en").is( jQuery("[lang=\"en\"]") ), "Check for attribute: Expected attribute lang to be 'en'" );
  73. ok( !jQuery("#en").is( jQuery("[lang=\"de\"]") ), "Check for attribute: Expected attribute lang to be 'en', not 'de'" );
  74. ok( jQuery("#text1").is( jQuery("[type=\"text\"]") ), "Check for attribute: Expected attribute type to be 'text'" );
  75. ok( !jQuery("#text1").is( jQuery("[type=\"radio\"]") ), "Check for attribute: Expected attribute type to be 'text', not 'radio'" );
  76. ok( !jQuery("#text1").is( jQuery("input:disabled") ), "Check for pseudoclass: Expected not disabled" );
  77. ok( jQuery("#radio2").is( jQuery("input:checked") ), "Check for pseudoclass: Expected to be checked" );
  78. ok( !jQuery("#radio1").is( jQuery("input:checked") ), "Check for pseudoclass: Expected not checked" );
  79. ok( jQuery("#foo").is( jQuery("div:has(p)") ), "Check for child: Expected a child 'p' element" );
  80. ok( !jQuery("#foo").is( jQuery("div:has(ul)") ), "Check for child: Did not expect 'ul' element" );
  81. // Some raw elements
  82. ok( jQuery("#form").is( jQuery("form")[0] ), "Check for element: A form is a form" );
  83. ok( !jQuery("#form").is( jQuery("div")[0] ), "Check for element: A form is not a div" );
  84. ok( jQuery("#mark").is( jQuery(".blog")[0] ), "Check for class: Expected class 'blog'" );
  85. ok( !jQuery("#mark").is( jQuery(".link")[0] ), "Check for class: Did not expect class 'link'" );
  86. ok( jQuery("#simon").is( jQuery(".blog.link")[0] ), "Check for multiple classes: Expected classes 'blog' and 'link'" );
  87. ok( !jQuery("#simon").is( jQuery(".blogTest")[0] ), "Check for multiple classes: Expected classes 'blog' and 'link', but not 'blogTest'" );
  88. });
  89. test("is() with positional selectors", function() {
  90. expect(23);
  91. var html = jQuery(
  92. '<p id="posp"><a class="firsta" href="#"><em>first</em></a><a class="seconda" href="#"><b>test</b></a><em></em></p>'
  93. ).appendTo( "body" ),
  94. isit = function(sel, match, expect) {
  95. equal( jQuery( sel ).is( match ), expect, "jQuery( " + sel + " ).is( " + match + " )" );
  96. };
  97. isit( "#posp", "#posp:first", true );
  98. isit( "#posp", "#posp:eq(2)", false );
  99. isit( "#posp", "#posp a:first", false );
  100. isit( "#posp .firsta", "#posp a:first", true );
  101. isit( "#posp .firsta", "#posp a:last", false );
  102. isit( "#posp .firsta", "#posp a:even", true );
  103. isit( "#posp .firsta", "#posp a:odd", false );
  104. isit( "#posp .firsta", "#posp a:eq(0)", true );
  105. isit( "#posp .firsta", "#posp a:eq(9)", false );
  106. isit( "#posp .firsta", "#posp em:eq(0)", false );
  107. isit( "#posp .firsta", "#posp em:first", false );
  108. isit( "#posp .firsta", "#posp:first", false );
  109. isit( "#posp .seconda", "#posp a:first", false );
  110. isit( "#posp .seconda", "#posp a:last", true );
  111. isit( "#posp .seconda", "#posp a:gt(0)", true );
  112. isit( "#posp .seconda", "#posp a:lt(5)", true );
  113. isit( "#posp .seconda", "#posp a:lt(1)", false );
  114. isit( "#posp em", "#posp a:eq(0) em", true );
  115. isit( "#posp em", "#posp a:lt(1) em", true );
  116. isit( "#posp em", "#posp a:gt(1) em", false );
  117. isit( "#posp em", "#posp a:first em", true );
  118. isit( "#posp em", "#posp a em:last", true );
  119. isit( "#posp em", "#posp a em:eq(2)", false );
  120. html.remove();
  121. });
  122. test("index()", function() {
  123. expect( 2 );
  124. equal( jQuery("#text2").index(), 2, "Returns the index of a child amongst its siblings" );
  125. equal( jQuery("<div/>").index(), -1, "Node without parent returns -1" );
  126. });
  127. test("index(Object|String|undefined)", function() {
  128. expect(16);
  129. var elements = jQuery([window, document]),
  130. inputElements = jQuery("#radio1,#radio2,#check1,#check2");
  131. // Passing a node
  132. equal( elements.index(window), 0, "Check for index of elements" );
  133. equal( elements.index(document), 1, "Check for index of elements" );
  134. equal( inputElements.index(document.getElementById("radio1")), 0, "Check for index of elements" );
  135. equal( inputElements.index(document.getElementById("radio2")), 1, "Check for index of elements" );
  136. equal( inputElements.index(document.getElementById("check1")), 2, "Check for index of elements" );
  137. equal( inputElements.index(document.getElementById("check2")), 3, "Check for index of elements" );
  138. equal( inputElements.index(window), -1, "Check for not found index" );
  139. equal( inputElements.index(document), -1, "Check for not found index" );
  140. // Passing a jQuery object
  141. // enabled since [5500]
  142. equal( elements.index( elements ), 0, "Pass in a jQuery object" );
  143. equal( elements.index( elements.eq(1) ), 1, "Pass in a jQuery object" );
  144. equal( jQuery("#form :radio").index( jQuery("#radio2") ), 1, "Pass in a jQuery object" );
  145. // Passing a selector or nothing
  146. // enabled since [6330]
  147. equal( jQuery("#text2").index(), 2, "Check for index amongst siblings" );
  148. equal( jQuery("#form").children().eq(4).index(), 4, "Check for index amongst siblings" );
  149. equal( jQuery("#radio2").index("#form :radio") , 1, "Check for index within a selector" );
  150. equal( jQuery("#form :radio").index( jQuery("#radio2") ), 1, "Check for index within a selector" );
  151. equal( jQuery("#radio2").index("#form :text") , -1, "Check for index not found within a selector" );
  152. });
  153. test("filter(Selector|undefined)", function() {
  154. expect(9);
  155. deepEqual( jQuery("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
  156. deepEqual( jQuery("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
  157. deepEqual( jQuery("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
  158. deepEqual( jQuery("p").filter(null).get(), [], "filter(null) should return an empty jQuery object");
  159. deepEqual( jQuery("p").filter(undefined).get(), [], "filter(undefined) should return an empty jQuery object");
  160. deepEqual( jQuery("p").filter(0).get(), [], "filter(0) should return an empty jQuery object");
  161. deepEqual( jQuery("p").filter("").get(), [], "filter('') should return an empty jQuery object");
  162. // using contents will get comments regular, text, and comment nodes
  163. var j = jQuery("#nonnodes").contents();
  164. equal( j.filter("span").length, 1, "Check node,textnode,comment to filter the one span" );
  165. equal( j.filter("[name]").length, 0, "Check node,textnode,comment to filter the one span" );
  166. });
  167. test("filter(Function)", function() {
  168. expect(2);
  169. deepEqual( jQuery("#qunit-fixture p").filter(function() { return !jQuery("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
  170. deepEqual( jQuery("#qunit-fixture p").filter(function(i, elem) { return !jQuery("a", elem).length }).get(), q("sndp", "first"), "filter(Function) using arg" );
  171. });
  172. test("filter(Element)", function() {
  173. expect(1);
  174. var element = document.getElementById("text1");
  175. deepEqual( jQuery("#form input").filter(element).get(), q("text1"), "filter(Element)" );
  176. });
  177. test("filter(Array)", function() {
  178. expect(1);
  179. var elements = [ document.getElementById("text1") ];
  180. deepEqual( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
  181. });
  182. test("filter(jQuery)", function() {
  183. expect(1);
  184. var elements = jQuery("#text1");
  185. deepEqual( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
  186. });
  187. test("filter() with positional selectors", function() {
  188. expect(19);
  189. var html = jQuery('' +
  190. '<p id="posp">' +
  191. '<a class="firsta" href="#">' +
  192. '<em>first</em>' +
  193. '</a>' +
  194. '<a class="seconda" href="#">' +
  195. '<b>test</b>' +
  196. '</a>' +
  197. '<em></em>' +
  198. '</p>').appendTo( "body" ),
  199. filterit = function(sel, filter, length) {
  200. equal( jQuery( sel ).filter( filter ).length, length, "jQuery( " + sel + " ).filter( " + filter + " )" );
  201. };
  202. filterit( "#posp", "#posp:first", 1);
  203. filterit( "#posp", "#posp:eq(2)", 0 );
  204. filterit( "#posp", "#posp a:first", 0 );
  205. // Keep in mind this is within the selection and
  206. // not in relation to other elements (.is() is a different story)
  207. filterit( "#posp .firsta", "#posp a:first", 1 );
  208. filterit( "#posp .firsta", "#posp a:last", 1 );
  209. filterit( "#posp .firsta", "#posp a:last-child", 0 );
  210. filterit( "#posp .firsta", "#posp a:even", 1 );
  211. filterit( "#posp .firsta", "#posp a:odd", 0 );
  212. filterit( "#posp .firsta", "#posp a:eq(0)", 1 );
  213. filterit( "#posp .firsta", "#posp a:eq(9)", 0 );
  214. filterit( "#posp .firsta", "#posp em:eq(0)", 0 );
  215. filterit( "#posp .firsta", "#posp em:first", 0 );
  216. filterit( "#posp .firsta", "#posp:first", 0 );
  217. filterit( "#posp .seconda", "#posp a:first", 1 );
  218. filterit( "#posp .seconda", "#posp em:first", 0 );
  219. filterit( "#posp .seconda", "#posp a:last", 1 );
  220. filterit( "#posp .seconda", "#posp a:gt(0)", 0 );
  221. filterit( "#posp .seconda", "#posp a:lt(5)", 1 );
  222. filterit( "#posp .seconda", "#posp a:lt(1)", 1 );
  223. html.remove();
  224. });
  225. test("closest()", function() {
  226. expect(13);
  227. deepEqual( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
  228. deepEqual( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
  229. deepEqual( jQuery("body").closest("div").get(), [], "closest(div)" );
  230. deepEqual( jQuery("#qunit-fixture").closest("span,#html").get(), q("html"), "closest(span,#html)" );
  231. deepEqual( jQuery("div:eq(1)").closest("div:first").get(), [], "closest(div:first)" );
  232. deepEqual( jQuery("div").closest("body:first div:last").get(), q("fx-tests"), "closest(body:first div:last)" );
  233. // Test .closest() limited by the context
  234. var jq = jQuery("#nothiddendivchild");
  235. deepEqual( jq.closest("html", document.body).get(), [], "Context limited." );
  236. deepEqual( jq.closest("body", document.body).get(), [], "Context limited." );
  237. deepEqual( jq.closest("#nothiddendiv", document.body).get(), q("nothiddendiv"), "Context not reached." );
  238. //Test that .closest() returns unique'd set
  239. equal( jQuery("#qunit-fixture p").closest("#qunit-fixture").length, 1, "Closest should return a unique set" );
  240. // Test on disconnected node
  241. equal( jQuery("<div><p></p></div>").find("p").closest("table").length, 0, "Make sure disconnected closest work." );
  242. // Bug #7369
  243. equal( jQuery("<div foo='bar'></div>").closest("[foo]").length, 1, "Disconnected nodes with attribute selector" );
  244. equal( jQuery("<div>text</div>").closest("[lang]").length, 0, "Disconnected nodes with text and non-existent attribute selector" );
  245. });
  246. test("closest(Array)", function() {
  247. expect(7);
  248. deepEqual( jQuery("body").closest(["body"]), [{selector:"body", elem:document.body, level:1}], "closest([body])" );
  249. deepEqual( jQuery("body").closest(["html"]), [{selector:"html", elem:document.documentElement, level:2}], "closest([html])" );
  250. deepEqual( jQuery("body").closest(["div"]), [], "closest([div])" );
  251. deepEqual( jQuery("#yahoo").closest(["div"]), [{"selector":"div", "elem": document.getElementById("foo"), "level": 3}, { "selector": "div", "elem": document.getElementById("qunit-fixture"), "level": 4 }], "closest([div])" );
  252. deepEqual( jQuery("#qunit-fixture").closest(["span,#html"]), [{selector:"span,#html", elem:document.documentElement, level:4}], "closest([span,#html])" );
  253. deepEqual( jQuery("body").closest(["body","html"]), [{selector:"body", elem:document.body, level:1}, {selector:"html", elem:document.documentElement, level:2}], "closest([body, html])" );
  254. deepEqual( jQuery("body").closest(["span","html"]), [{selector:"html", elem:document.documentElement, level:2}], "closest([body, html])" );
  255. });
  256. test("closest(jQuery)", function() {
  257. expect(8);
  258. var $child = jQuery("#nothiddendivchild"),
  259. $parent = jQuery("#nothiddendiv"),
  260. $main = jQuery("#qunit-fixture"),
  261. $body = jQuery("body");
  262. ok( $child.closest( $parent ).is("#nothiddendiv"), "closest( jQuery('#nothiddendiv') )" );
  263. ok( $child.closest( $parent[0] ).is("#nothiddendiv"), "closest( jQuery('#nothiddendiv') ) :: node" );
  264. ok( $child.closest( $child ).is("#nothiddendivchild"), "child is included" );
  265. ok( $child.closest( $child[0] ).is("#nothiddendivchild"), "child is included :: node" );
  266. equal( $child.closest( document.createElement("div") ).length, 0, "created element is not related" );
  267. equal( $child.closest( $main ).length, 0, "Main not a parent of child" );
  268. equal( $child.closest( $main[0] ).length, 0, "Main not a parent of child :: node" );
  269. ok( $child.closest( $body.add($parent) ).is("#nothiddendiv"), "Closest ancestor retrieved." );
  270. });
  271. test("not(Selector|undefined)", function() {
  272. expect(11);
  273. equal( jQuery("#qunit-fixture > p#ap > a").not("#google").length, 2, "not('selector')" );
  274. deepEqual( jQuery("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
  275. deepEqual( jQuery("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
  276. deepEqual( jQuery("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d", "option3e", "option4e","option5b"), "not('complex selector')");
  277. deepEqual( jQuery("#ap *").not("code").get(), q("google", "groups", "anchor1", "mark"), "not('tag selector')" );
  278. deepEqual( jQuery("#ap *").not("code, #mark").get(), q("google", "groups", "anchor1"), "not('tag, ID selector')" );
  279. deepEqual( jQuery("#ap *").not("#mark, code").get(), q("google", "groups", "anchor1"), "not('ID, tag selector')");
  280. var all = jQuery("p").get();
  281. deepEqual( jQuery("p").not(null).get(), all, "not(null) should have no effect");
  282. deepEqual( jQuery("p").not(undefined).get(), all, "not(undefined) should have no effect");
  283. deepEqual( jQuery("p").not(0).get(), all, "not(0) should have no effect");
  284. deepEqual( jQuery("p").not("").get(), all, "not('') should have no effect");
  285. });
  286. test("not(Element)", function() {
  287. expect(1);
  288. var selects = jQuery("#form select");
  289. deepEqual( selects.not( selects[1] ).get(), q("select1", "select3", "select4", "select5"), "filter out DOM element");
  290. });
  291. test("not(Function)", function() {
  292. deepEqual( jQuery("#qunit-fixture p").not(function() { return jQuery("a", this).length }).get(), q("sndp", "first"), "not(Function)" );
  293. });
  294. test("not(Array)", function() {
  295. expect(2);
  296. equal( jQuery("#qunit-fixture > p#ap > a").not(document.getElementById("google")).length, 2, "not(DOMElement)" );
  297. equal( jQuery("p").not(document.getElementsByTagName("p")).length, 0, "not(Array-like DOM collection)" );
  298. });
  299. test("not(jQuery)", function() {
  300. expect(1);
  301. deepEqual( jQuery("p").not(jQuery("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
  302. });
  303. test("has(Element)", function() {
  304. expect(2);
  305. var obj = jQuery("#qunit-fixture").has(jQuery("#sndp")[0]);
  306. deepEqual( obj.get(), q("qunit-fixture"), "Keeps elements that have the element as a descendant" );
  307. var multipleParent = jQuery("#qunit-fixture, #header").has(jQuery("#sndp")[0]);
  308. deepEqual( obj.get(), q("qunit-fixture"), "Does not include elements that do not have the element as a descendant" );
  309. });
  310. test("has(Selector)", function() {
  311. expect(3);
  312. var obj = jQuery("#qunit-fixture").has("#sndp");
  313. deepEqual( obj.get(), q("qunit-fixture"), "Keeps elements that have any element matching the selector as a descendant" );
  314. var multipleParent = jQuery("#qunit-fixture, #header").has("#sndp");
  315. deepEqual( obj.get(), q("qunit-fixture"), "Does not include elements that do not have the element as a descendant" );
  316. var multipleHas = jQuery("#qunit-fixture").has("#sndp, #first");
  317. deepEqual( multipleHas.get(), q("qunit-fixture"), "Only adds elements once" );
  318. });
  319. test("has(Arrayish)", function() {
  320. expect(3);
  321. var simple = jQuery("#qunit-fixture").has(jQuery("#sndp"));
  322. deepEqual( simple.get(), q("qunit-fixture"), "Keeps elements that have any element in the jQuery list as a descendant" );
  323. var multipleParent = jQuery("#qunit-fixture, #header").has(jQuery("#sndp"));
  324. deepEqual( multipleParent.get(), q("qunit-fixture"), "Does not include elements that do not have an element in the jQuery list as a descendant" );
  325. var multipleHas = jQuery("#qunit-fixture").has(jQuery("#sndp, #first"));
  326. deepEqual( simple.get(), q("qunit-fixture"), "Only adds elements once" );
  327. });
  328. test("andSelf()", function() {
  329. expect(4);
  330. deepEqual( jQuery("#en").siblings().andSelf().get(), q("sndp", "en", "sap"), "Check for siblings and self" );
  331. deepEqual( jQuery("#foo").children().andSelf().get(), q("foo", "sndp", "en", "sap"), "Check for children and self" );
  332. deepEqual( jQuery("#sndp, #en").parent().andSelf().get(), q("foo","sndp","en"), "Check for parent and self" );
  333. deepEqual( jQuery("#groups").parents("p, div").andSelf().get(), q("qunit-fixture", "ap", "groups"), "Check for parents and self" );
  334. });
  335. test("siblings([String])", function() {
  336. expect(6);
  337. deepEqual( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
  338. deepEqual( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
  339. deepEqual( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
  340. deepEqual( jQuery("#foo").siblings("form, b").get(), q("form", "floatTest", "lengthtest", "name-tests", "testForm"), "Check for multiple filters" );
  341. var set = q("sndp", "en", "sap");
  342. deepEqual( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
  343. deepEqual( jQuery("#option5a").siblings("option[data-attr]").get(), q("option5c"), "Has attribute selector in siblings (#9261)" );
  344. });
  345. test("children([String])", function() {
  346. expect(3);
  347. deepEqual( jQuery("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
  348. deepEqual( jQuery("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
  349. deepEqual( jQuery("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
  350. });
  351. test("parent([String])", function() {
  352. expect(5);
  353. equal( jQuery("#groups").parent()[0].id, "ap", "Simple parent check" );
  354. equal( jQuery("#groups").parent("p")[0].id, "ap", "Filtered parent check" );
  355. equal( jQuery("#groups").parent("div").length, 0, "Filtered parent check, no match" );
  356. equal( jQuery("#groups").parent("div, p")[0].id, "ap", "Check for multiple filters" );
  357. deepEqual( jQuery("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
  358. });
  359. test("parents([String])", function() {
  360. expect(5);
  361. equal( jQuery("#groups").parents()[0].id, "ap", "Simple parents check" );
  362. equal( jQuery("#groups").parents("p")[0].id, "ap", "Filtered parents check" );
  363. equal( jQuery("#groups").parents("div")[0].id, "qunit-fixture", "Filtered parents check2" );
  364. deepEqual( jQuery("#groups").parents("p, div").get(), q("ap", "qunit-fixture"), "Check for multiple filters" );
  365. deepEqual( jQuery("#en, #sndp").parents().get(), q("foo", "qunit-fixture", "dl", "body", "html"), "Check for unique results from parents" );
  366. });
  367. test("parentsUntil([String])", function() {
  368. expect(9);
  369. var parents = jQuery("#groups").parents();
  370. deepEqual( jQuery("#groups").parentsUntil().get(), parents.get(), "parentsUntil with no selector (nextAll)" );
  371. deepEqual( jQuery("#groups").parentsUntil(".foo").get(), parents.get(), "parentsUntil with invalid selector (nextAll)" );
  372. deepEqual( jQuery("#groups").parentsUntil("#html").get(), parents.not(":last").get(), "Simple parentsUntil check" );
  373. equal( jQuery("#groups").parentsUntil("#ap").length, 0, "Simple parentsUntil check" );
  374. deepEqual( jQuery("#groups").parentsUntil("#html, #body").get(), parents.slice( 0, 3 ).get(), "Less simple parentsUntil check" );
  375. deepEqual( jQuery("#groups").parentsUntil("#html", "div").get(), jQuery("#qunit-fixture").get(), "Filtered parentsUntil check" );
  376. deepEqual( jQuery("#groups").parentsUntil("#html", "p,div,dl").get(), parents.slice( 0, 3 ).get(), "Multiple-filtered parentsUntil check" );
  377. equal( jQuery("#groups").parentsUntil("#html", "span").length, 0, "Filtered parentsUntil check, no match" );
  378. deepEqual( jQuery("#groups, #ap").parentsUntil("#html", "p,div,dl").get(), parents.slice( 0, 3 ).get(), "Multi-source, multiple-filtered parentsUntil check" );
  379. });
  380. test("next([String])", function() {
  381. expect(4);
  382. equal( jQuery("#ap").next()[0].id, "foo", "Simple next check" );
  383. equal( jQuery("#ap").next("div")[0].id, "foo", "Filtered next check" );
  384. equal( jQuery("#ap").next("p").length, 0, "Filtered next check, no match" );
  385. equal( jQuery("#ap").next("div, p")[0].id, "foo", "Multiple filters" );
  386. });
  387. test("prev([String])", function() {
  388. expect(4);
  389. equal( jQuery("#foo").prev()[0].id, "ap", "Simple prev check" );
  390. equal( jQuery("#foo").prev("p")[0].id, "ap", "Filtered prev check" );
  391. equal( jQuery("#foo").prev("div").length, 0, "Filtered prev check, no match" );
  392. equal( jQuery("#foo").prev("p, div")[0].id, "ap", "Multiple filters" );
  393. });
  394. test("nextAll([String])", function() {
  395. expect(4);
  396. var elems = jQuery("#form").children();
  397. deepEqual( jQuery("#label-for").nextAll().get(), elems.not(":first").get(), "Simple nextAll check" );
  398. deepEqual( jQuery("#label-for").nextAll("input").get(), elems.not(":first").filter("input").get(), "Filtered nextAll check" );
  399. deepEqual( jQuery("#label-for").nextAll("input,select").get(), elems.not(":first").filter("input,select").get(), "Multiple-filtered nextAll check" );
  400. deepEqual( jQuery("#label-for, #hidden1").nextAll("input,select").get(), elems.not(":first").filter("input,select").get(), "Multi-source, multiple-filtered nextAll check" );
  401. });
  402. test("prevAll([String])", function() {
  403. expect(4);
  404. var elems = jQuery( jQuery("#form").children().slice(0, 12).get().reverse() );
  405. deepEqual( jQuery("#area1").prevAll().get(), elems.get(), "Simple prevAll check" );
  406. deepEqual( jQuery("#area1").prevAll("input").get(), elems.filter("input").get(), "Filtered prevAll check" );
  407. deepEqual( jQuery("#area1").prevAll("input,select").get(), elems.filter("input,select").get(), "Multiple-filtered prevAll check" );
  408. deepEqual( jQuery("#area1, #hidden1").prevAll("input,select").get(), elems.filter("input,select").get(), "Multi-source, multiple-filtered prevAll check" );
  409. });
  410. test("nextUntil([String])", function() {
  411. expect(11);
  412. var elems = jQuery("#form").children().slice( 2, 12 );
  413. deepEqual( jQuery("#text1").nextUntil().get(), jQuery("#text1").nextAll().get(), "nextUntil with no selector (nextAll)" );
  414. deepEqual( jQuery("#text1").nextUntil(".foo").get(), jQuery("#text1").nextAll().get(), "nextUntil with invalid selector (nextAll)" );
  415. deepEqual( jQuery("#text1").nextUntil("#area1").get(), elems.get(), "Simple nextUntil check" );
  416. equal( jQuery("#text1").nextUntil("#text2").length, 0, "Simple nextUntil check" );
  417. deepEqual( jQuery("#text1").nextUntil("#area1, #radio1").get(), jQuery("#text1").next().get(), "Less simple nextUntil check" );
  418. deepEqual( jQuery("#text1").nextUntil("#area1", "input").get(), elems.not("button").get(), "Filtered nextUntil check" );
  419. deepEqual( jQuery("#text1").nextUntil("#area1", "button").get(), elems.not("input").get(), "Filtered nextUntil check" );
  420. deepEqual( jQuery("#text1").nextUntil("#area1", "button,input").get(), elems.get(), "Multiple-filtered nextUntil check" );
  421. equal( jQuery("#text1").nextUntil("#area1", "div").length, 0, "Filtered nextUntil check, no match" );
  422. deepEqual( jQuery("#text1, #hidden1").nextUntil("#area1", "button,input").get(), elems.get(), "Multi-source, multiple-filtered nextUntil check" );
  423. deepEqual( jQuery("#text1").nextUntil("[class=foo]").get(), jQuery("#text1").nextAll().get(), "Non-element nodes must be skipped, since they have no attributes" );
  424. });
  425. test("prevUntil([String])", function() {
  426. expect(10);
  427. var elems = jQuery("#area1").prevAll();
  428. deepEqual( jQuery("#area1").prevUntil().get(), elems.get(), "prevUntil with no selector (prevAll)" );
  429. deepEqual( jQuery("#area1").prevUntil(".foo").get(), elems.get(), "prevUntil with invalid selector (prevAll)" );
  430. deepEqual( jQuery("#area1").prevUntil("label").get(), elems.not(":last").get(), "Simple prevUntil check" );
  431. equal( jQuery("#area1").prevUntil("#button").length, 0, "Simple prevUntil check" );
  432. deepEqual( jQuery("#area1").prevUntil("label, #search").get(), jQuery("#area1").prev().get(), "Less simple prevUntil check" );
  433. deepEqual( jQuery("#area1").prevUntil("label", "input").get(), elems.not(":last").not("button").get(), "Filtered prevUntil check" );
  434. deepEqual( jQuery("#area1").prevUntil("label", "button").get(), elems.not(":last").not("input").get(), "Filtered prevUntil check" );
  435. deepEqual( jQuery("#area1").prevUntil("label", "button,input").get(), elems.not(":last").get(), "Multiple-filtered prevUntil check" );
  436. equal( jQuery("#area1").prevUntil("label", "div").length, 0, "Filtered prevUntil check, no match" );
  437. deepEqual( jQuery("#area1, #hidden1").prevUntil("label", "button,input").get(), elems.not(":last").get(), "Multi-source, multiple-filtered prevUntil check" );
  438. });
  439. test("contents()", function() {
  440. expect(12);
  441. equal( jQuery("#ap").contents().length, 9, "Check element contents" );
  442. ok( jQuery("#iframe").contents()[0], "Check existance of IFrame document" );
  443. var ibody = jQuery("#loadediframe").contents()[0].body;
  444. ok( ibody, "Check existance of IFrame body" );
  445. equal( jQuery("span", ibody).text(), "span text", "Find span in IFrame and check its text" );
  446. jQuery(ibody).append("<div>init text</div>");
  447. equal( jQuery("div", ibody).length, 2, "Check the original div and the new div are in IFrame" );
  448. equal( jQuery("div:last", ibody).text(), "init text", "Add text to div in IFrame" );
  449. jQuery("div:last", ibody).text("div text");
  450. equal( jQuery("div:last", ibody).text(), "div text", "Add text to div in IFrame" );
  451. jQuery("div:last", ibody).remove();
  452. equal( jQuery("div", ibody).length, 1, "Delete the div and check only one div left in IFrame" );
  453. equal( jQuery("div", ibody).text(), "span text", "Make sure the correct div is still left after deletion in IFrame" );
  454. jQuery("<table/>", ibody).append("<tr><td>cell</td></tr>").appendTo(ibody);
  455. jQuery("table", ibody).remove();
  456. equal( jQuery("div", ibody).length, 1, "Check for JS error on add and delete of a table in IFrame" );
  457. // using contents will get comments regular, text, and comment nodes
  458. var c = jQuery("#nonnodes").contents().contents();
  459. equal( c.length, 1, "Check node,textnode,comment contents is just one" );
  460. equal( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" );
  461. });
  462. test("add(String|Element|Array|undefined)", function() {
  463. expect(16);
  464. deepEqual( jQuery("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
  465. deepEqual( jQuery("#sndp").add( jQuery("#en")[0] ).add( jQuery("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
  466. // We no longer support .add(form.elements), unfortunately.
  467. // There is no way, in browsers, to reliably determine the difference
  468. // between form.elements and form - and doing .add(form) and having it
  469. // add the form elements is way to unexpected, so this gets the boot.
  470. // ok( jQuery([]).add(jQuery("#form")[0].elements).length >= 13, "Check elements from array" );
  471. // For the time being, we're discontinuing support for jQuery(form.elements) since it's ambiguous in IE
  472. // use jQuery([]).add(form.elements) instead.
  473. //equal( jQuery([]).add(jQuery("#form")[0].elements).length, jQuery(jQuery("#form")[0].elements).length, "Array in constructor must equals array in add()" );
  474. var divs = jQuery("<div/>").add("#sndp");
  475. ok( !divs[0].parentNode, "Make sure the first element is still the disconnected node." );
  476. divs = jQuery("<div>test</div>").add("#sndp");
  477. equal( divs[0].parentNode.nodeType, 11, "Make sure the first element is still the disconnected node." );
  478. divs = jQuery("#sndp").add("<div/>");
  479. ok( !divs[1].parentNode, "Make sure the first element is still the disconnected node." );
  480. var tmp = jQuery("<div/>");
  481. var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>").appendTo(tmp)).add(jQuery("<p id='x2'>xxx</p>").appendTo(tmp));
  482. equal( x[0].id, "x1", "Check on-the-fly element1" );
  483. equal( x[1].id, "x2", "Check on-the-fly element2" );
  484. var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>").appendTo(tmp)[0]).add(jQuery("<p id='x2'>xxx</p>").appendTo(tmp)[0]);
  485. equal( x[0].id, "x1", "Check on-the-fly element1" );
  486. equal( x[1].id, "x2", "Check on-the-fly element2" );
  487. var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>")).add(jQuery("<p id='x2'>xxx</p>"));
  488. equal( x[0].id, "x1", "Check on-the-fly element1" );
  489. equal( x[1].id, "x2", "Check on-the-fly element2" );
  490. var x = jQuery([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
  491. equal( x[0].id, "x1", "Check on-the-fly element1" );
  492. equal( x[1].id, "x2", "Check on-the-fly element2" );
  493. var notDefined;
  494. equal( jQuery([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
  495. equal( jQuery([]).add( document.getElementById("form") ).length, 1, "Add a form" );
  496. equal( jQuery([]).add( document.getElementById("select1") ).length, 1, "Add a select" );
  497. });
  498. test("add(String, Context)", function() {
  499. expect(6);
  500. deepEqual( jQuery( "#firstp" ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add selector to selector " );
  501. deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add gEBId to selector" );
  502. deepEqual( jQuery( document.getElementById("firstp") ).add( document.getElementById("ap") ).get(), q( "firstp", "ap" ), "Add gEBId to gEBId" );
  503. var ctx = document.getElementById("firstp");
  504. deepEqual( jQuery( "#firstp" ).add( "#ap", ctx ).get(), q( "firstp" ), "Add selector to selector " );
  505. deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", ctx ).get(), q( "firstp" ), "Add gEBId to selector, not in context" );
  506. deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", document.getElementsByTagName("body")[0] ).get(), q( "firstp", "ap" ), "Add gEBId to selector, in context" );
  507. });
  508. test("eq('-1') #10616", function() {
  509. expect(3);
  510. var $divs = jQuery( "div" );
  511. equal( $divs.eq( -1 ).length, 1, "The number -1 returns a selection that has length 1" );
  512. equal( $divs.eq( "-1" ).length, 1, "The string '-1' returns a selection that has length 1" );
  513. deepEqual( $divs.eq( "-1" ), $divs.eq( -1 ), "String and number -1 match" );
  514. });