manipulation.js 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701
  1. module("manipulation", { teardown: moduleTeardown });
  2. // Ensure that an extended Array prototype doesn't break jQuery
  3. Array.prototype.arrayProtoFn = function(arg) { throw("arrayProtoFn should not be called"); };
  4. var bareObj = function(value) { return value; };
  5. var functionReturningObj = function(value) { return (function() { return value; }); };
  6. test("text()", function() {
  7. expect(3);
  8. var expected = "This link has class=\"blog\": Simon Willison's Weblog";
  9. equal( jQuery("#sap").text(), expected, "Check for merged text of more then one element." );
  10. // Check serialization of text values
  11. equal( jQuery(document.createTextNode("foo")).text(), "foo", "Text node was retreived from .text()." );
  12. notEqual( jQuery(document).text(), "", "Retrieving text for the document retrieves all text (#10724).");
  13. });
  14. var testText = function(valueObj) {
  15. expect(4);
  16. var val = valueObj("<div><b>Hello</b> cruel world!</div>");
  17. equal( jQuery("#foo").text(val)[0].innerHTML.replace(/>/g, "&gt;"), "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );
  18. // using contents will get comments regular, text, and comment nodes
  19. var j = jQuery("#nonnodes").contents();
  20. j.text(valueObj("hi!"));
  21. equal( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" );
  22. equal( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" );
  23. // Blackberry 4.6 doesn't maintain comments in the DOM
  24. equal( jQuery("#nonnodes")[0].childNodes.length < 3 ? 8 : j[2].nodeType, 8, "Check node,textnode,comment with text()" );
  25. };
  26. test("text(String)", function() {
  27. testText(bareObj);
  28. });
  29. test("text(Function)", function() {
  30. testText(functionReturningObj);
  31. });
  32. test("text(Function) with incoming value", function() {
  33. expect(2);
  34. var old = "This link has class=\"blog\": Simon Willison's Weblog";
  35. jQuery("#sap").text(function(i, val) {
  36. equal( val, old, "Make sure the incoming value is correct." );
  37. return "foobar";
  38. });
  39. equal( jQuery("#sap").text(), "foobar", "Check for merged text of more then one element." );
  40. QUnit.reset();
  41. });
  42. var testWrap = function(val) {
  43. expect(19);
  44. var defaultText = "Try them out:";
  45. var result = jQuery("#first").wrap(val( "<div class='red'><span></span></div>" )).text();
  46. equal( defaultText, result, "Check for wrapping of on-the-fly html" );
  47. ok( jQuery("#first").parent().parent().is(".red"), "Check if wrapper has class 'red'" );
  48. QUnit.reset();
  49. result = jQuery("#first").wrap(val( document.getElementById("empty") )).parent();
  50. ok( result.is("ol"), "Check for element wrapping" );
  51. equal( result.text(), defaultText, "Check for element wrapping" );
  52. QUnit.reset();
  53. jQuery("#check1").click(function() {
  54. var checkbox = this;
  55. ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
  56. jQuery(checkbox).wrap(val( "<div id='c1' style='display:none;'></div>" ));
  57. ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
  58. }).click();
  59. // using contents will get comments regular, text, and comment nodes
  60. var j = jQuery("#nonnodes").contents();
  61. j.wrap(val( "<i></i>" ));
  62. // Blackberry 4.6 doesn't maintain comments in the DOM
  63. equal( jQuery("#nonnodes > i").length, jQuery("#nonnodes")[0].childNodes.length, "Check node,textnode,comment wraps ok" );
  64. equal( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" );
  65. // Try wrapping a disconnected node
  66. var cacheLength = 0;
  67. for (var i in jQuery.cache) {
  68. cacheLength++;
  69. }
  70. j = jQuery("<label/>").wrap(val( "<li/>" ));
  71. equal( j[0].nodeName.toUpperCase(), "LABEL", "Element is a label" );
  72. equal( j[0].parentNode.nodeName.toUpperCase(), "LI", "Element has been wrapped" );
  73. for (i in jQuery.cache) {
  74. cacheLength--;
  75. }
  76. equal(cacheLength, 0, "No memory leak in jQuery.cache (bug #7165)");
  77. // Wrap an element containing a text node
  78. j = jQuery("<span/>").wrap("<div>test</div>");
  79. equal( j[0].previousSibling.nodeType, 3, "Make sure the previous node is a text element" );
  80. equal( j[0].parentNode.nodeName.toUpperCase(), "DIV", "And that we're in the div element." );
  81. // Try to wrap an element with multiple elements (should fail)
  82. j = jQuery("<div><span></span></div>").children().wrap("<p></p><div></div>");
  83. equal( j[0].parentNode.parentNode.childNodes.length, 1, "There should only be one element wrapping." );
  84. equal( j.length, 1, "There should only be one element (no cloning)." );
  85. equal( j[0].parentNode.nodeName.toUpperCase(), "P", "The span should be in the paragraph." );
  86. // Wrap an element with a jQuery set
  87. j = jQuery("<span/>").wrap(jQuery("<div></div>"));
  88. equal( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." );
  89. // Wrap an element with a jQuery set and event
  90. result = jQuery("<div></div>").click(function(){
  91. ok(true, "Event triggered.");
  92. // Remove handlers on detached elements
  93. result.unbind();
  94. jQuery(this).unbind();
  95. });
  96. j = jQuery("<span/>").wrap(result);
  97. equal( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." );
  98. j.parent().trigger("click");
  99. // clean up attached elements
  100. QUnit.reset();
  101. }
  102. test("wrap(String|Element)", function() {
  103. testWrap(bareObj);
  104. });
  105. test("wrap(Function)", function() {
  106. testWrap(functionReturningObj);
  107. });
  108. test("wrap(Function) with index (#10177)", function() {
  109. var expectedIndex = 0,
  110. targets = jQuery("#qunit-fixture p");
  111. expect(targets.length);
  112. targets.wrap(function(i) {
  113. equal( i, expectedIndex, "Check if the provided index (" + i + ") is as expected (" + expectedIndex + ")" );
  114. expectedIndex++;
  115. return "<div id='wrap_index_'" + i + "'></div>";
  116. });
  117. });
  118. test("wrap(String) consecutive elements (#10177)", function() {
  119. var targets = jQuery("#qunit-fixture p");
  120. expect(targets.length * 2);
  121. targets.wrap("<div class='wrapper'></div>");
  122. targets.each(function() {
  123. var $this = jQuery(this);
  124. ok( $this.parent().is('.wrapper'), "Check each elements parent is correct (.wrapper)" );
  125. equal( $this.siblings().length, 0, "Each element should be wrapped individually" );
  126. });
  127. });
  128. var testWrapAll = function(val) {
  129. expect(8);
  130. var prev = jQuery("#firstp")[0].previousSibling;
  131. var p = jQuery("#firstp,#first")[0].parentNode;
  132. var result = jQuery("#firstp,#first").wrapAll(val( "<div class='red'><div class='tmp'></div></div>" ));
  133. equal( result.parent().length, 1, "Check for wrapping of on-the-fly html" );
  134. ok( jQuery("#first").parent().parent().is(".red"), "Check if wrapper has class 'red'" );
  135. ok( jQuery("#firstp").parent().parent().is(".red"), "Check if wrapper has class 'red'" );
  136. equal( jQuery("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
  137. equal( jQuery("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
  138. QUnit.reset();
  139. var prev = jQuery("#firstp")[0].previousSibling;
  140. var p = jQuery("#first")[0].parentNode;
  141. var result = jQuery("#firstp,#first").wrapAll(val( document.getElementById("empty") ));
  142. equal( jQuery("#first").parent()[0], jQuery("#firstp").parent()[0], "Same Parent" );
  143. equal( jQuery("#first").parent()[0].previousSibling, prev, "Correct Previous Sibling" );
  144. equal( jQuery("#first").parent()[0].parentNode, p, "Correct Parent" );
  145. }
  146. test("wrapAll(String|Element)", function() {
  147. testWrapAll(bareObj);
  148. });
  149. var testWrapInner = function(val) {
  150. expect(11);
  151. var num = jQuery("#first").children().length;
  152. var result = jQuery("#first").wrapInner(val("<div class='red'><div id='tmp'></div></div>"));
  153. equal( jQuery("#first").children().length, 1, "Only one child" );
  154. ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
  155. equal( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
  156. QUnit.reset();
  157. var num = jQuery("#first").html("foo<div>test</div><div>test2</div>").children().length;
  158. var result = jQuery("#first").wrapInner(val("<div class='red'><div id='tmp'></div></div>"));
  159. equal( jQuery("#first").children().length, 1, "Only one child" );
  160. ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
  161. equal( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
  162. QUnit.reset();
  163. var num = jQuery("#first").children().length;
  164. var result = jQuery("#first").wrapInner(val(document.getElementById("empty")));
  165. equal( jQuery("#first").children().length, 1, "Only one child" );
  166. ok( jQuery("#first").children().is("#empty"), "Verify Right Element" );
  167. equal( jQuery("#first").children().children().length, num, "Verify Elements Intact" );
  168. var div = jQuery("<div/>");
  169. div.wrapInner(val("<span></span>"));
  170. equal(div.children().length, 1, "The contents were wrapped.");
  171. equal(div.children()[0].nodeName.toLowerCase(), "span", "A span was inserted.");
  172. }
  173. test("wrapInner(String|Element)", function() {
  174. testWrapInner(bareObj);
  175. });
  176. test("wrapInner(Function)", function() {
  177. testWrapInner(functionReturningObj)
  178. });
  179. test("unwrap()", function() {
  180. expect(9);
  181. jQuery("body").append(" <div id='unwrap' style='display: none;'> <div id='unwrap1'> <span class='unwrap'>a</span> <span class='unwrap'>b</span> </div> <div id='unwrap2'> <span class='unwrap'>c</span> <span class='unwrap'>d</span> </div> <div id='unwrap3'> <b><span class='unwrap unwrap3'>e</span></b> <b><span class='unwrap unwrap3'>f</span></b> </div> </div>");
  182. var abcd = jQuery("#unwrap1 > span, #unwrap2 > span").get(),
  183. abcdef = jQuery("#unwrap span").get();
  184. equal( jQuery("#unwrap1 span").add("#unwrap2 span:first").unwrap().length, 3, "make #unwrap1 and #unwrap2 go away" );
  185. deepEqual( jQuery("#unwrap > span").get(), abcd, "all four spans should still exist" );
  186. deepEqual( jQuery("#unwrap3 span").unwrap().get(), jQuery("#unwrap3 > span").get(), "make all b in #unwrap3 go away" );
  187. deepEqual( jQuery("#unwrap3 span").unwrap().get(), jQuery("#unwrap > span.unwrap3").get(), "make #unwrap3 go away" );
  188. deepEqual( jQuery("#unwrap").children().get(), abcdef, "#unwrap only contains 6 child spans" );
  189. deepEqual( jQuery("#unwrap > span").unwrap().get(), jQuery("body > span.unwrap").get(), "make the 6 spans become children of body" );
  190. deepEqual( jQuery("body > span.unwrap").unwrap().get(), jQuery("body > span.unwrap").get(), "can't unwrap children of body" );
  191. deepEqual( jQuery("body > span.unwrap").unwrap().get(), abcdef, "can't unwrap children of body" );
  192. deepEqual( jQuery("body > span.unwrap").get(), abcdef, "body contains 6 .unwrap child spans" );
  193. jQuery("body > span.unwrap").remove();
  194. });
  195. var testAppend = function(valueObj) {
  196. expect(41);
  197. var defaultText = "Try them out:"
  198. var result = jQuery("#first").append(valueObj("<b>buga</b>"));
  199. equal( result.text(), defaultText + "buga", "Check if text appending works" );
  200. equal( jQuery("#select3").append(valueObj("<option value='appendTest'>Append Test</option>")).find("option:last-child").attr("value"), "appendTest", "Appending html options to select element");
  201. QUnit.reset();
  202. var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
  203. jQuery("#sap").append(valueObj(document.getElementById("first")));
  204. equal( jQuery("#sap").text(), expected, "Check for appending of element" );
  205. QUnit.reset();
  206. expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
  207. jQuery("#sap").append(valueObj([document.getElementById("first"), document.getElementById("yahoo")]));
  208. equal( jQuery("#sap").text(), expected, "Check for appending of array of elements" );
  209. QUnit.reset();
  210. expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
  211. jQuery("#sap").append(valueObj(jQuery("#yahoo, #first")));
  212. equal( jQuery("#sap").text(), expected, "Check for appending of jQuery object" );
  213. QUnit.reset();
  214. jQuery("#sap").append(valueObj( 5 ));
  215. ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
  216. QUnit.reset();
  217. jQuery("#sap").append(valueObj( " text with spaces " ));
  218. ok( jQuery("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
  219. QUnit.reset();
  220. ok( jQuery("#sap").append(valueObj( [] )), "Check for appending an empty array." );
  221. ok( jQuery("#sap").append(valueObj( "" )), "Check for appending an empty string." );
  222. ok( jQuery("#sap").append(valueObj( document.getElementsByTagName("foo") )), "Check for appending an empty nodelist." );
  223. QUnit.reset();
  224. jQuery("form").append(valueObj("<input name='radiotest' type='radio' checked='checked' />"));
  225. jQuery("form input[name=radiotest]").each(function(){
  226. ok( jQuery(this).is(":checked"), "Append checked radio");
  227. }).remove();
  228. QUnit.reset();
  229. jQuery("form").append(valueObj("<input name='radiotest' type='radio' checked = 'checked' />"));
  230. jQuery("form input[name=radiotest]").each(function(){
  231. ok( jQuery(this).is(":checked"), "Append alternately formated checked radio");
  232. }).remove();
  233. QUnit.reset();
  234. jQuery("form").append(valueObj("<input name='radiotest' type='radio' checked />"));
  235. jQuery("form input[name=radiotest]").each(function(){
  236. ok( jQuery(this).is(":checked"), "Append HTML5-formated checked radio");
  237. }).remove();
  238. QUnit.reset();
  239. jQuery("#sap").append(valueObj( document.getElementById("form") ));
  240. equal( jQuery("#sap>form").size(), 1, "Check for appending a form" ); // Bug #910
  241. QUnit.reset();
  242. var pass = true;
  243. try {
  244. var body = jQuery("#iframe")[0].contentWindow.document.body;
  245. pass = false;
  246. jQuery( body ).append(valueObj( "<div>test</div>" ));
  247. pass = true;
  248. } catch(e) {}
  249. ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
  250. QUnit.reset();
  251. jQuery("<fieldset/>").appendTo("#form").append(valueObj( "<legend id='legend'>test</legend>" ));
  252. t( "Append legend", "#legend", ["legend"] );
  253. QUnit.reset();
  254. jQuery("#select1").append(valueObj( "<OPTION>Test</OPTION>" ));
  255. equal( jQuery("#select1 option:last").text(), "Test", "Appending &lt;OPTION&gt; (all caps)" );
  256. jQuery("#table").append(valueObj( "<colgroup></colgroup>" ));
  257. ok( jQuery("#table colgroup").length, "Append colgroup" );
  258. jQuery("#table colgroup").append(valueObj( "<col/>" ));
  259. ok( jQuery("#table colgroup col").length, "Append col" );
  260. QUnit.reset();
  261. jQuery("#table").append(valueObj( "<caption></caption>" ));
  262. ok( jQuery("#table caption").length, "Append caption" );
  263. QUnit.reset();
  264. jQuery("form:last")
  265. .append(valueObj( "<select id='appendSelect1'></select>" ))
  266. .append(valueObj( "<select id='appendSelect2'><option>Test</option></select>" ));
  267. t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] );
  268. equal( "Two nodes", jQuery("<div />").append("Two", " nodes").text(), "Appending two text nodes (#4011)" );
  269. // using contents will get comments regular, text, and comment nodes
  270. var j = jQuery("#nonnodes").contents();
  271. var d = jQuery("<div/>").appendTo("#nonnodes").append(j);
  272. equal( jQuery("#nonnodes").length, 1, "Check node,textnode,comment append moved leaving just the div" );
  273. ok( d.contents().length >= 2, "Check node,textnode,comment append works" );
  274. d.contents().appendTo("#nonnodes");
  275. d.remove();
  276. ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment append cleanup worked" );
  277. QUnit.reset();
  278. var $input = jQuery("<input />").attr({ "type": "checkbox", "checked": true }).appendTo('#testForm');
  279. equal( $input[0].checked, true, "A checked checkbox that is appended stays checked" );
  280. QUnit.reset();
  281. var $radios = jQuery("input:radio[name='R1']"),
  282. $radioNot = jQuery("<input type='radio' name='R1' checked='checked'/>").insertAfter( $radios ),
  283. $radio = $radios.eq(1).click();
  284. $radioNot[0].checked = false;
  285. $radios.parent().wrap("<div></div>");
  286. equal( $radio[0].checked, true, "Reappending radios uphold which radio is checked" );
  287. equal( $radioNot[0].checked, false, "Reappending radios uphold not being checked" );
  288. QUnit.reset();
  289. var prev = jQuery("#sap").children().length;
  290. jQuery("#sap").append(
  291. "<span></span>",
  292. "<span></span>",
  293. "<span></span>"
  294. );
  295. equal( jQuery("#sap").children().length, prev + 3, "Make sure that multiple arguments works." );
  296. QUnit.reset();
  297. }
  298. test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  299. testAppend(bareObj);
  300. });
  301. test("append(Function)", function() {
  302. testAppend(functionReturningObj);
  303. });
  304. test("append(Function) with incoming value", function() {
  305. expect(12);
  306. var defaultText = "Try them out:", old = jQuery("#first").html();
  307. var result = jQuery("#first").append(function(i, val){
  308. equal( val, old, "Make sure the incoming value is correct." );
  309. return "<b>buga</b>";
  310. });
  311. equal( result.text(), defaultText + "buga", "Check if text appending works" );
  312. var select = jQuery("#select3");
  313. old = select.html();
  314. equal( select.append(function(i, val){
  315. equal( val, old, "Make sure the incoming value is correct." );
  316. return "<option value='appendTest'>Append Test</option>";
  317. }).find("option:last-child").attr("value"), "appendTest", "Appending html options to select element");
  318. QUnit.reset();
  319. var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
  320. old = jQuery("#sap").html();
  321. jQuery("#sap").append(function(i, val){
  322. equal( val, old, "Make sure the incoming value is correct." );
  323. return document.getElementById("first");
  324. });
  325. equal( jQuery("#sap").text(), expected, "Check for appending of element" );
  326. QUnit.reset();
  327. expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
  328. old = jQuery("#sap").html();
  329. jQuery("#sap").append(function(i, val){
  330. equal( val, old, "Make sure the incoming value is correct." );
  331. return [document.getElementById("first"), document.getElementById("yahoo")];
  332. });
  333. equal( jQuery("#sap").text(), expected, "Check for appending of array of elements" );
  334. QUnit.reset();
  335. expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
  336. old = jQuery("#sap").html();
  337. jQuery("#sap").append(function(i, val){
  338. equal( val, old, "Make sure the incoming value is correct." );
  339. return jQuery("#yahoo, #first");
  340. });
  341. equal( jQuery("#sap").text(), expected, "Check for appending of jQuery object" );
  342. QUnit.reset();
  343. old = jQuery("#sap").html();
  344. jQuery("#sap").append(function(i, val){
  345. equal( val, old, "Make sure the incoming value is correct." );
  346. return 5;
  347. });
  348. ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
  349. QUnit.reset();
  350. });
  351. test("append the same fragment with events (Bug #6997, 5566)", function () {
  352. var doExtra = !jQuery.support.noCloneEvent && document.fireEvent;
  353. expect(2 + (doExtra ? 1 : 0));
  354. stop();
  355. var element;
  356. // This patch modified the way that cloning occurs in IE; we need to make sure that
  357. // native event handlers on the original object don't get disturbed when they are
  358. // modified on the clone
  359. if ( doExtra ) {
  360. element = jQuery("div:first").click(function () {
  361. ok(true, "Event exists on original after being unbound on clone");
  362. jQuery(this).unbind("click");
  363. });
  364. var clone = element.clone(true).unbind("click");
  365. clone[0].fireEvent("onclick");
  366. element[0].fireEvent("onclick");
  367. // manually clean up detached elements
  368. clone.remove();
  369. }
  370. element = jQuery("<a class='test6997'></a>").click(function () {
  371. ok(true, "Append second element events work");
  372. });
  373. jQuery("#listWithTabIndex li").append(element)
  374. .find("a.test6997").eq(1).click();
  375. element = jQuery("<li class='test6997'></li>").click(function () {
  376. ok(true, "Before second element events work");
  377. start();
  378. });
  379. jQuery("#listWithTabIndex li").before(element);
  380. jQuery("#listWithTabIndex li.test6997").eq(1).click();
  381. });
  382. test("append HTML5 sectioning elements (Bug #6485)", function () {
  383. expect(2);
  384. jQuery("#qunit-fixture").append("<article style='font-size:10px'><section><aside>HTML5 elements</aside></section></article>");
  385. var article = jQuery("article"),
  386. aside = jQuery("aside");
  387. equal( article.css("fontSize"), "10px", "HTML5 elements are styleable");
  388. equal( aside.length, 1, "HTML5 elements do not collapse their children")
  389. });
  390. test("HTML5 Elements inherit styles from style rules (Bug #10501)", function () {
  391. expect(1);
  392. jQuery("#qunit-fixture").append("<article id='article'></article>");
  393. jQuery("#article").append("<section>This section should have a pink background.</section>");
  394. // In IE, the missing background color will claim its value is "transparent"
  395. notEqual( jQuery("section").css("background-color"), "transparent", "HTML5 elements inherit styles");
  396. });
  397. test("html5 clone() cannot use the fragment cache in IE (#6485)", function () {
  398. expect(1);
  399. jQuery("<article><section><aside>HTML5 elements</aside></section></article>").appendTo("#qunit-fixture");
  400. var clone = jQuery("article").clone();
  401. jQuery("#qunit-fixture").append( clone );
  402. equal( jQuery("aside").length, 2, "clone()ing HTML5 elems does not collapse them" );
  403. });
  404. test("html(String) with HTML5 (Bug #6485)", function() {
  405. expect(2);
  406. jQuery("#qunit-fixture").html("<article><section><aside>HTML5 elements</aside></section></article>");
  407. equal( jQuery("#qunit-fixture").children().children().length, 1, "Make sure HTML5 article elements can hold children. innerHTML shortcut path" );
  408. equal( jQuery("#qunit-fixture").children().children().children().length, 1, "Make sure nested HTML5 elements can hold children." );
  409. });
  410. test("append(xml)", function() {
  411. expect( 1 );
  412. function createXMLDoc() {
  413. // Initialize DOM based upon latest installed MSXML or Netscape
  414. var elem,
  415. aActiveX =
  416. [ "MSXML6.DomDocument",
  417. "MSXML3.DomDocument",
  418. "MSXML2.DomDocument",
  419. "MSXML.DomDocument",
  420. "Microsoft.XmlDom" ];
  421. if ( document.implementation && "createDocument" in document.implementation ) {
  422. return document.implementation.createDocument( "", "", null );
  423. } else {
  424. // IE
  425. for ( var n = 0, len = aActiveX.length; n < len; n++ ) {
  426. try {
  427. elem = new ActiveXObject( aActiveX[ n ] );
  428. return elem;
  429. } catch(_){};
  430. }
  431. }
  432. }
  433. var xmlDoc = createXMLDoc(),
  434. xml1 = xmlDoc.createElement("head"),
  435. xml2 = xmlDoc.createElement("test");
  436. ok( jQuery( xml1 ).append( xml2 ), "Append an xml element to another without raising an exception." );
  437. });
  438. test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  439. expect(17);
  440. var defaultText = "Try them out:"
  441. jQuery("<b>buga</b>").appendTo("#first");
  442. equal( jQuery("#first").text(), defaultText + "buga", "Check if text appending works" );
  443. equal( jQuery("<option value='appendTest'>Append Test</option>").appendTo("#select3").parent().find("option:last-child").attr("value"), "appendTest", "Appending html options to select element");
  444. QUnit.reset();
  445. var l = jQuery("#first").children().length + 2;
  446. jQuery("<strong>test</strong>");
  447. jQuery("<strong>test</strong>");
  448. jQuery([ jQuery("<strong>test</strong>")[0], jQuery("<strong>test</strong>")[0] ])
  449. .appendTo("#first");
  450. equal( jQuery("#first").children().length, l, "Make sure the elements were inserted." );
  451. equal( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." );
  452. QUnit.reset();
  453. var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
  454. jQuery(document.getElementById("first")).appendTo("#sap");
  455. equal( jQuery("#sap").text(), expected, "Check for appending of element" );
  456. QUnit.reset();
  457. expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
  458. jQuery([document.getElementById("first"), document.getElementById("yahoo")]).appendTo("#sap");
  459. equal( jQuery("#sap").text(), expected, "Check for appending of array of elements" );
  460. QUnit.reset();
  461. ok( jQuery(document.createElement("script")).appendTo("body").length, "Make sure a disconnected script can be appended." );
  462. QUnit.reset();
  463. expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
  464. jQuery("#yahoo, #first").appendTo("#sap");
  465. equal( jQuery("#sap").text(), expected, "Check for appending of jQuery object" );
  466. QUnit.reset();
  467. jQuery("#select1").appendTo("#foo");
  468. t( "Append select", "#foo select", ["select1"] );
  469. QUnit.reset();
  470. var div = jQuery("<div/>").click(function(){
  471. ok(true, "Running a cloned click.");
  472. });
  473. div.appendTo("#qunit-fixture, #moretests");
  474. jQuery("#qunit-fixture div:last").click();
  475. jQuery("#moretests div:last").click();
  476. QUnit.reset();
  477. div = jQuery("<div/>").appendTo("#qunit-fixture, #moretests");
  478. equal( div.length, 2, "appendTo returns the inserted elements" );
  479. div.addClass("test");
  480. ok( jQuery("#qunit-fixture div:last").hasClass("test"), "appendTo element was modified after the insertion" );
  481. ok( jQuery("#moretests div:last").hasClass("test"), "appendTo element was modified after the insertion" );
  482. QUnit.reset();
  483. div = jQuery("<div/>");
  484. jQuery("<span>a</span><b>b</b>").filter("span").appendTo( div );
  485. equal( div.children().length, 1, "Make sure the right number of children were inserted." );
  486. div = jQuery("#moretests div");
  487. var num = jQuery("#qunit-fixture div").length;
  488. div.remove().appendTo("#qunit-fixture");
  489. equal( jQuery("#qunit-fixture div").length, num, "Make sure all the removed divs were inserted." );
  490. QUnit.reset();
  491. stop();
  492. jQuery.getScript('data/test.js', function() {
  493. jQuery('script[src*="data\\/test\\.js"]').remove();
  494. start();
  495. });
  496. });
  497. var testPrepend = function(val) {
  498. expect(5);
  499. var defaultText = "Try them out:"
  500. var result = jQuery("#first").prepend(val( "<b>buga</b>" ));
  501. equal( result.text(), "buga" + defaultText, "Check if text prepending works" );
  502. equal( jQuery("#select3").prepend(val( "<option value='prependTest'>Prepend Test</option>" )).find("option:first-child").attr("value"), "prependTest", "Prepending html options to select element");
  503. QUnit.reset();
  504. var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
  505. jQuery("#sap").prepend(val( document.getElementById("first") ));
  506. equal( jQuery("#sap").text(), expected, "Check for prepending of element" );
  507. QUnit.reset();
  508. expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
  509. jQuery("#sap").prepend(val( [document.getElementById("first"), document.getElementById("yahoo")] ));
  510. equal( jQuery("#sap").text(), expected, "Check for prepending of array of elements" );
  511. QUnit.reset();
  512. expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
  513. jQuery("#sap").prepend(val( jQuery("#yahoo, #first") ));
  514. equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" );
  515. };
  516. test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  517. testPrepend(bareObj);
  518. });
  519. test("prepend(Function)", function() {
  520. testPrepend(functionReturningObj);
  521. });
  522. test("prepend(Function) with incoming value", function() {
  523. expect(10);
  524. var defaultText = "Try them out:", old = jQuery("#first").html();
  525. var result = jQuery("#first").prepend(function(i, val) {
  526. equal( val, old, "Make sure the incoming value is correct." );
  527. return "<b>buga</b>";
  528. });
  529. equal( result.text(), "buga" + defaultText, "Check if text prepending works" );
  530. old = jQuery("#select3").html();
  531. equal( jQuery("#select3").prepend(function(i, val) {
  532. equal( val, old, "Make sure the incoming value is correct." );
  533. return "<option value='prependTest'>Prepend Test</option>";
  534. }).find("option:first-child").attr("value"), "prependTest", "Prepending html options to select element");
  535. QUnit.reset();
  536. var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
  537. old = jQuery("#sap").html();
  538. jQuery("#sap").prepend(function(i, val) {
  539. equal( val, old, "Make sure the incoming value is correct." );
  540. return document.getElementById("first");
  541. });
  542. equal( jQuery("#sap").text(), expected, "Check for prepending of element" );
  543. QUnit.reset();
  544. expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
  545. old = jQuery("#sap").html();
  546. jQuery("#sap").prepend(function(i, val) {
  547. equal( val, old, "Make sure the incoming value is correct." );
  548. return [document.getElementById("first"), document.getElementById("yahoo")];
  549. });
  550. equal( jQuery("#sap").text(), expected, "Check for prepending of array of elements" );
  551. QUnit.reset();
  552. expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
  553. old = jQuery("#sap").html();
  554. jQuery("#sap").prepend(function(i, val) {
  555. equal( val, old, "Make sure the incoming value is correct." );
  556. return jQuery("#yahoo, #first");
  557. });
  558. equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" );
  559. });
  560. test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  561. expect(6);
  562. var defaultText = "Try them out:"
  563. jQuery("<b>buga</b>").prependTo("#first");
  564. equal( jQuery("#first").text(), "buga" + defaultText, "Check if text prepending works" );
  565. equal( jQuery("<option value='prependTest'>Prepend Test</option>").prependTo("#select3").parent().find("option:first-child").attr("value"), "prependTest", "Prepending html options to select element");
  566. QUnit.reset();
  567. var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
  568. jQuery(document.getElementById("first")).prependTo("#sap");
  569. equal( jQuery("#sap").text(), expected, "Check for prepending of element" );
  570. QUnit.reset();
  571. expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
  572. jQuery([document.getElementById("first"), document.getElementById("yahoo")]).prependTo("#sap");
  573. equal( jQuery("#sap").text(), expected, "Check for prepending of array of elements" );
  574. QUnit.reset();
  575. expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
  576. jQuery("#yahoo, #first").prependTo("#sap");
  577. equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" );
  578. QUnit.reset();
  579. jQuery("<select id='prependSelect1'></select>").prependTo("form:last");
  580. jQuery("<select id='prependSelect2'><option>Test</option></select>").prependTo("form:last");
  581. t( "Prepend Select", "#prependSelect2, #prependSelect1", ["prependSelect2", "prependSelect1"] );
  582. });
  583. var testBefore = function(val) {
  584. expect(6);
  585. var expected = "This is a normal link: bugaYahoo";
  586. jQuery("#yahoo").before(val( "<b>buga</b>" ));
  587. equal( jQuery("#en").text(), expected, "Insert String before" );
  588. QUnit.reset();
  589. expected = "This is a normal link: Try them out:Yahoo";
  590. jQuery("#yahoo").before(val( document.getElementById("first") ));
  591. equal( jQuery("#en").text(), expected, "Insert element before" );
  592. QUnit.reset();
  593. expected = "This is a normal link: Try them out:diveintomarkYahoo";
  594. jQuery("#yahoo").before(val( [document.getElementById("first"), document.getElementById("mark")] ));
  595. equal( jQuery("#en").text(), expected, "Insert array of elements before" );
  596. QUnit.reset();
  597. expected = "This is a normal link: diveintomarkTry them out:Yahoo";
  598. jQuery("#yahoo").before(val( jQuery("#mark, #first") ));
  599. equal( jQuery("#en").text(), expected, "Insert jQuery before" );
  600. var set = jQuery("<div/>").before("<span>test</span>");
  601. equal( set[0].nodeName.toLowerCase(), "span", "Insert the element before the disconnected node." );
  602. equal( set.length, 2, "Insert the element before the disconnected node." );
  603. };
  604. test("before(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  605. testBefore(bareObj);
  606. });
  607. test("before(Function)", function() {
  608. testBefore(functionReturningObj);
  609. });
  610. test("before and after w/ empty object (#10812)", function() {
  611. expect(2);
  612. var res = jQuery( "#notInTheDocument" ).before( "(" ).after( ")" );
  613. equal( res.length, 2, "didn't choke on empty object" );
  614. equal( res.wrapAll("<div/>").parent().text(), "()", "correctly appended text" );
  615. });
  616. test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  617. expect(4);
  618. var expected = "This is a normal link: bugaYahoo";
  619. jQuery("<b>buga</b>").insertBefore("#yahoo");
  620. equal( jQuery("#en").text(), expected, "Insert String before" );
  621. QUnit.reset();
  622. expected = "This is a normal link: Try them out:Yahoo";
  623. jQuery(document.getElementById("first")).insertBefore("#yahoo");
  624. equal( jQuery("#en").text(), expected, "Insert element before" );
  625. QUnit.reset();
  626. expected = "This is a normal link: Try them out:diveintomarkYahoo";
  627. jQuery([document.getElementById("first"), document.getElementById("mark")]).insertBefore("#yahoo");
  628. equal( jQuery("#en").text(), expected, "Insert array of elements before" );
  629. QUnit.reset();
  630. expected = "This is a normal link: diveintomarkTry them out:Yahoo";
  631. jQuery("#mark, #first").insertBefore("#yahoo");
  632. equal( jQuery("#en").text(), expected, "Insert jQuery before" );
  633. });
  634. var testAfter = function(val) {
  635. expect(6);
  636. var expected = "This is a normal link: Yahoobuga";
  637. jQuery("#yahoo").after(val( "<b>buga</b>" ));
  638. equal( jQuery("#en").text(), expected, "Insert String after" );
  639. QUnit.reset();
  640. expected = "This is a normal link: YahooTry them out:";
  641. jQuery("#yahoo").after(val( document.getElementById("first") ));
  642. equal( jQuery("#en").text(), expected, "Insert element after" );
  643. QUnit.reset();
  644. expected = "This is a normal link: YahooTry them out:diveintomark";
  645. jQuery("#yahoo").after(val( [document.getElementById("first"), document.getElementById("mark")] ));
  646. equal( jQuery("#en").text(), expected, "Insert array of elements after" );
  647. QUnit.reset();
  648. expected = "This is a normal link: YahoodiveintomarkTry them out:";
  649. jQuery("#yahoo").after(val( jQuery("#mark, #first") ));
  650. equal( jQuery("#en").text(), expected, "Insert jQuery after" );
  651. var set = jQuery("<div/>").after("<span>test</span>");
  652. equal( set[1].nodeName.toLowerCase(), "span", "Insert the element after the disconnected node." );
  653. equal( set.length, 2, "Insert the element after the disconnected node." );
  654. };
  655. test("after(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  656. testAfter(bareObj);
  657. });
  658. test("after(Function)", function() {
  659. testAfter(functionReturningObj);
  660. });
  661. test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  662. expect(4);
  663. var expected = "This is a normal link: Yahoobuga";
  664. jQuery("<b>buga</b>").insertAfter("#yahoo");
  665. equal( jQuery("#en").text(), expected, "Insert String after" );
  666. QUnit.reset();
  667. expected = "This is a normal link: YahooTry them out:";
  668. jQuery(document.getElementById("first")).insertAfter("#yahoo");
  669. equal( jQuery("#en").text(), expected, "Insert element after" );
  670. QUnit.reset();
  671. expected = "This is a normal link: YahooTry them out:diveintomark";
  672. jQuery([document.getElementById("first"), document.getElementById("mark")]).insertAfter("#yahoo");
  673. equal( jQuery("#en").text(), expected, "Insert array of elements after" );
  674. QUnit.reset();
  675. expected = "This is a normal link: YahoodiveintomarkTry them out:";
  676. jQuery("#mark, #first").insertAfter("#yahoo");
  677. equal( jQuery("#en").text(), expected, "Insert jQuery after" );
  678. });
  679. var testReplaceWith = function(val) {
  680. expect(21);
  681. jQuery("#yahoo").replaceWith(val( "<b id='replace'>buga</b>" ));
  682. ok( jQuery("#replace")[0], "Replace element with string" );
  683. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after string" );
  684. QUnit.reset();
  685. jQuery("#yahoo").replaceWith(val( document.getElementById("first") ));
  686. ok( jQuery("#first")[0], "Replace element with element" );
  687. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after element" );
  688. QUnit.reset();
  689. jQuery("#qunit-fixture").append("<div id='bar'><div id='baz'</div></div>");
  690. jQuery("#baz").replaceWith("Baz");
  691. equal( jQuery("#bar").text(),"Baz", "Replace element with text" );
  692. ok( !jQuery("#baz")[0], "Verify that original element is gone, after element" );
  693. QUnit.reset();
  694. jQuery("#yahoo").replaceWith(val( [document.getElementById("first"), document.getElementById("mark")] ));
  695. ok( jQuery("#first")[0], "Replace element with array of elements" );
  696. ok( jQuery("#mark")[0], "Replace element with array of elements" );
  697. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after array of elements" );
  698. QUnit.reset();
  699. jQuery("#yahoo").replaceWith(val( jQuery("#mark, #first") ));
  700. ok( jQuery("#first")[0], "Replace element with set of elements" );
  701. ok( jQuery("#mark")[0], "Replace element with set of elements" );
  702. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after set of elements" );
  703. QUnit.reset();
  704. var tmp = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); });
  705. var y = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
  706. var child = y.append("<b>test</b>").find("b").click(function(){ ok(true, "Child bound click run." ); return false; });
  707. y.replaceWith( tmp );
  708. tmp.click();
  709. y.click(); // Shouldn't be run
  710. child.click(); // Shouldn't be run
  711. tmp.remove();
  712. y.remove();
  713. child.remove();
  714. QUnit.reset();
  715. y = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
  716. var child2 = y.append("<u>test</u>").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; });
  717. y.replaceWith( child2 );
  718. child2.click();
  719. y.remove();
  720. child2.remove();
  721. QUnit.reset();
  722. var set = jQuery("<div/>").replaceWith(val("<span>test</span>"));
  723. equal( set[0].nodeName.toLowerCase(), "span", "Replace the disconnected node." );
  724. equal( set.length, 1, "Replace the disconnected node." );
  725. var non_existant = jQuery("#does-not-exist").replaceWith( val("<b>should not throw an error</b>") );
  726. equal( non_existant.length, 0, "Length of non existant element." );
  727. var $div = jQuery("<div class='replacewith'></div>").appendTo("body");
  728. // TODO: Work on jQuery(...) inline script execution
  729. //$div.replaceWith("<div class='replacewith'></div><script>" +
  730. //"equal(jQuery('.replacewith').length, 1, 'Check number of elements in page.');" +
  731. //"</script>");
  732. equal(jQuery(".replacewith").length, 1, "Check number of elements in page.");
  733. jQuery(".replacewith").remove();
  734. QUnit.reset();
  735. jQuery("#qunit-fixture").append("<div id='replaceWith'></div>");
  736. equal( jQuery("#qunit-fixture").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
  737. jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
  738. equal( jQuery("#qunit-fixture").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
  739. jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
  740. equal( jQuery("#qunit-fixture").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
  741. }
  742. test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  743. testReplaceWith(bareObj);
  744. });
  745. test("replaceWith(Function)", function() {
  746. testReplaceWith(functionReturningObj);
  747. expect(22);
  748. var y = jQuery("#yahoo")[0];
  749. jQuery(y).replaceWith(function(){
  750. equal( this, y, "Make sure the context is coming in correctly." );
  751. });
  752. QUnit.reset();
  753. });
  754. test("replaceWith(string) for more than one element", function(){
  755. expect(3);
  756. equal(jQuery("#foo p").length, 3, "ensuring that test data has not changed");
  757. jQuery("#foo p").replaceWith("<span>bar</span>");
  758. equal(jQuery("#foo span").length, 3, "verify that all the three original element have been replaced");
  759. equal(jQuery("#foo p").length, 0, "verify that all the three original element have been replaced");
  760. });
  761. test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
  762. expect(10);
  763. jQuery("<b id='replace'>buga</b>").replaceAll("#yahoo");
  764. ok( jQuery("#replace")[0], "Replace element with string" );
  765. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after string" );
  766. QUnit.reset();
  767. jQuery(document.getElementById("first")).replaceAll("#yahoo");
  768. ok( jQuery("#first")[0], "Replace element with element" );
  769. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after element" );
  770. QUnit.reset();
  771. jQuery([document.getElementById("first"), document.getElementById("mark")]).replaceAll("#yahoo");
  772. ok( jQuery("#first")[0], "Replace element with array of elements" );
  773. ok( jQuery("#mark")[0], "Replace element with array of elements" );
  774. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after array of elements" );
  775. QUnit.reset();
  776. jQuery("#mark, #first").replaceAll("#yahoo");
  777. ok( jQuery("#first")[0], "Replace element with set of elements" );
  778. ok( jQuery("#mark")[0], "Replace element with set of elements" );
  779. ok( !jQuery("#yahoo")[0], "Verify that original element is gone, after set of elements" );
  780. });
  781. test("jQuery.clone() (#8017)", function() {
  782. expect(2);
  783. ok( jQuery.clone && jQuery.isFunction( jQuery.clone ) , "jQuery.clone() utility exists and is a function.");
  784. var main = jQuery("#qunit-fixture")[0],
  785. clone = jQuery.clone( main );
  786. equal( main.childNodes.length, clone.childNodes.length, "Simple child length to ensure a large dom tree copies correctly" );
  787. });
  788. test("clone() (#8070)", function () {
  789. expect(2);
  790. jQuery("<select class='test8070'></select><select class='test8070'></select>").appendTo("#qunit-fixture");
  791. var selects = jQuery(".test8070");
  792. selects.append("<OPTION>1</OPTION><OPTION>2</OPTION>");
  793. equal( selects[0].childNodes.length, 2, "First select got two nodes" );
  794. equal( selects[1].childNodes.length, 2, "Second select got two nodes" );
  795. selects.remove();
  796. });
  797. test("clone()", function() {
  798. expect(39);
  799. equal( "This is a normal link: Yahoo", jQuery("#en").text(), "Assert text for #en" );
  800. var clone = jQuery("#yahoo").clone();
  801. equal( "Try them out:Yahoo", jQuery("#first").append(clone).text(), "Check for clone" );
  802. equal( "This is a normal link: Yahoo", jQuery("#en").text(), "Reassert text for #en" );
  803. var cloneTags = [
  804. "<table/>", "<tr/>", "<td/>", "<div/>",
  805. "<button/>", "<ul/>", "<ol/>", "<li/>",
  806. "<input type='checkbox' />", "<select/>", "<option/>", "<textarea/>",
  807. "<tbody/>", "<thead/>", "<tfoot/>", "<iframe/>"
  808. ];
  809. for (var i = 0; i < cloneTags.length; i++) {
  810. var j = jQuery(cloneTags[i]);
  811. equal( j[0].tagName, j.clone()[0].tagName, "Clone a " + cloneTags[i]);
  812. }
  813. // using contents will get comments regular, text, and comment nodes
  814. var cl = jQuery("#nonnodes").contents().clone();
  815. ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
  816. var div = jQuery("<div><ul><li>test</li></ul></div>").click(function(){
  817. ok( true, "Bound event still exists." );
  818. });
  819. clone = div.clone(true);
  820. // manually clean up detached elements
  821. div.remove();
  822. div = clone.clone(true);
  823. // manually clean up detached elements
  824. clone.remove();
  825. equal( div.length, 1, "One element cloned" );
  826. equal( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
  827. div.trigger("click");
  828. // manually clean up detached elements
  829. div.remove();
  830. div = jQuery("<div/>").append([ document.createElement("table"), document.createElement("table") ]);
  831. div.find("table").click(function(){
  832. ok( true, "Bound event still exists." );
  833. });
  834. clone = div.clone(true);
  835. equal( clone.length, 1, "One element cloned" );
  836. equal( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
  837. clone.find("table:last").trigger("click");
  838. // manually clean up detached elements
  839. div.remove();
  840. clone.remove();
  841. var divEvt = jQuery("<div><ul><li>test</li></ul></div>").click(function(){
  842. ok( false, "Bound event still exists after .clone()." );
  843. }),
  844. cloneEvt = divEvt.clone();
  845. // Make sure that doing .clone() doesn't clone events
  846. cloneEvt.trigger("click");
  847. cloneEvt.remove();
  848. divEvt.remove();
  849. // Test both html() and clone() for <embed and <object types
  850. div = jQuery("<div/>").html('<embed height="355" width="425" src="http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en"></embed>');
  851. clone = div.clone(true);
  852. equal( clone.length, 1, "One element cloned" );
  853. equal( clone.html(), div.html(), "Element contents cloned" );
  854. equal( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
  855. // this is technically an invalid object, but because of the special
  856. // classid instantiation it is the only kind that IE has trouble with,
  857. // so let's test with it too.
  858. div = jQuery("<div/>").html("<object height='355' width='425' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'> <param name='movie' value='http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'> <param name='wmode' value='transparent'> </object>");
  859. clone = div.clone(true);
  860. equal( clone.length, 1, "One element cloned" );
  861. // equal( clone.html(), div.html(), "Element contents cloned" );
  862. equal( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
  863. // and here's a valid one.
  864. div = jQuery("<div/>").html("<object height='355' width='425' type='application/x-shockwave-flash' data='http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'> <param name='movie' value='http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en'> <param name='wmode' value='transparent'> </object>");
  865. clone = div.clone(true);
  866. equal( clone.length, 1, "One element cloned" );
  867. equal( clone.html(), div.html(), "Element contents cloned" );
  868. equal( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
  869. div = jQuery("<div/>").data({ a: true });
  870. clone = div.clone(true);
  871. equal( clone.data("a"), true, "Data cloned." );
  872. clone.data("a", false);
  873. equal( clone.data("a"), false, "Ensure cloned element data object was correctly modified" );
  874. equal( div.data("a"), true, "Ensure cloned element data object is copied, not referenced" );
  875. // manually clean up detached elements
  876. div.remove();
  877. clone.remove();
  878. var form = document.createElement("form");
  879. form.action = "/test/";
  880. var div = document.createElement("div");
  881. div.appendChild( document.createTextNode("test") );
  882. form.appendChild( div );
  883. equal( jQuery(form).clone().children().length, 1, "Make sure we just get the form back." );
  884. equal( jQuery("body").clone().children()[0].id, "qunit-header", "Make sure cloning body works" );
  885. });
  886. test("clone(form element) (Bug #3879, #6655)", function() {
  887. expect(5);
  888. var element = jQuery("<select><option>Foo</option><option selected>Bar</option></select>");
  889. equal( element.clone().find("option:selected").val(), element.find("option:selected").val(), "Selected option cloned correctly" );
  890. element = jQuery("<input type='checkbox' value='foo'>").attr("checked", "checked");
  891. clone = element.clone();
  892. equal( clone.is(":checked"), element.is(":checked"), "Checked input cloned correctly" );
  893. equal( clone[0].defaultValue, "foo", "Checked input defaultValue cloned correctly" );
  894. // defaultChecked also gets set now due to setAttribute in attr, is this check still valid?
  895. // equal( clone[0].defaultChecked, !jQuery.support.noCloneChecked, "Checked input defaultChecked cloned correctly" );
  896. element = jQuery("<input type='text' value='foo'>");
  897. clone = element.clone();
  898. equal( clone[0].defaultValue, "foo", "Text input defaultValue cloned correctly" );
  899. element = jQuery("<textarea>foo</textarea>");
  900. clone = element.clone();
  901. equal( clone[0].defaultValue, "foo", "Textarea defaultValue cloned correctly" );
  902. });
  903. test("clone(multiple selected options) (Bug #8129)", function() {
  904. expect(1);
  905. var element = jQuery("<select><option>Foo</option><option selected>Bar</option><option selected>Baz</option></select>");
  906. equal( element.clone().find("option:selected").length, element.find("option:selected").length, "Multiple selected options cloned correctly" );
  907. });
  908. if (!isLocal) {
  909. test("clone() on XML nodes", function() {
  910. expect(2);
  911. stop();
  912. jQuery.get("data/dashboard.xml", function (xml) {
  913. var root = jQuery(xml.documentElement).clone();
  914. var origTab = jQuery("tab", xml).eq(0);
  915. var cloneTab = jQuery("tab", root).eq(0);
  916. origTab.text("origval");
  917. cloneTab.text("cloneval");
  918. equal(origTab.text(), "origval", "Check original XML node was correctly set");
  919. equal(cloneTab.text(), "cloneval", "Check cloned XML node was correctly set");
  920. start();
  921. });
  922. });
  923. }
  924. var testHtml = function(valueObj) {
  925. expect(34);
  926. jQuery.scriptorder = 0;
  927. var div = jQuery("#qunit-fixture > div");
  928. div.html(valueObj("<b>test</b>"));
  929. var pass = true;
  930. for ( var i = 0; i < div.size(); i++ ) {
  931. if ( div.get(i).childNodes.length != 1 ) pass = false;
  932. }
  933. ok( pass, "Set HTML" );
  934. div = jQuery("<div/>").html( valueObj("<div id='parent_1'><div id='child_1'/></div><div id='parent_2'/>") );
  935. equal( div.children().length, 2, "Make sure two child nodes exist." );
  936. equal( div.children().children().length, 1, "Make sure that a grandchild exists." );
  937. var space = jQuery("<div/>").html(valueObj("&#160;"))[0].innerHTML;
  938. ok( /^\xA0$|^&nbsp;$/.test( space ), "Make sure entities are passed through correctly." );
  939. equal( jQuery("<div/>").html(valueObj("&amp;"))[0].innerHTML, "&amp;", "Make sure entities are passed through correctly." );
  940. jQuery("#qunit-fixture").html(valueObj("<style>.foobar{color:green;}</style>"));
  941. equal( jQuery("#qunit-fixture").children().length, 1, "Make sure there is a child element." );
  942. equal( jQuery("#qunit-fixture").children()[0].nodeName.toUpperCase(), "STYLE", "And that a style element was inserted." );
  943. QUnit.reset();
  944. // using contents will get comments regular, text, and comment nodes
  945. var j = jQuery("#nonnodes").contents();
  946. j.html(valueObj("<b>bold</b>"));
  947. // this is needed, or the expando added by jQuery unique will yield a different html
  948. j.find("b").removeData();
  949. equal( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
  950. jQuery("#qunit-fixture").html(valueObj("<select/>"));
  951. jQuery("#qunit-fixture select").html(valueObj("<option>O1</option><option selected='selected'>O2</option><option>O3</option>"));
  952. equal( jQuery("#qunit-fixture select").val(), "O2", "Selected option correct" );
  953. var $div = jQuery("<div />");
  954. equal( $div.html(valueObj( 5 )).html(), "5", "Setting a number as html" );
  955. equal( $div.html(valueObj( 0 )).html(), "0", "Setting a zero as html" );
  956. var $div2 = jQuery("<div/>"), insert = "&lt;div&gt;hello1&lt;/div&gt;";
  957. equal( $div2.html(insert).html().replace(/>/g, "&gt;"), insert, "Verify escaped insertion." );
  958. equal( $div2.html("x" + insert).html().replace(/>/g, "&gt;"), "x" + insert, "Verify escaped insertion." );
  959. equal( $div2.html(" " + insert).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );
  960. var map = jQuery("<map/>").html(valueObj("<area id='map01' shape='rect' coords='50,50,150,150' href='http://www.jquery.com/' alt='jQuery'>"));
  961. equal( map[0].childNodes.length, 1, "The area was inserted." );
  962. equal( map[0].firstChild.nodeName.toLowerCase(), "area", "The area was inserted." );
  963. QUnit.reset();
  964. jQuery("#qunit-fixture").html(valueObj("<script type='something/else'>ok( false, 'Non-script evaluated.' );</script><script type='text/javascript'>ok( true, 'text/javascript is evaluated.' );</script><script>ok( true, 'No type is evaluated.' );</script><div><script type='text/javascript'>ok( true, 'Inner text/javascript is evaluated.' );</script><script>ok( true, 'Inner No type is evaluated.' );</script><script type='something/else'>ok( false, 'Non-script evaluated.' );</script></div>"));
  965. var child = jQuery("#qunit-fixture").find("script");
  966. equal( child.length, 2, "Make sure that two non-JavaScript script tags are left." );
  967. equal( child[0].type, "something/else", "Verify type of script tag." );
  968. equal( child[1].type, "something/else", "Verify type of script tag." );
  969. jQuery("#qunit-fixture").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
  970. jQuery("#qunit-fixture").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
  971. jQuery("#qunit-fixture").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
  972. jQuery("#qunit-fixture").html(valueObj("<script type='text/javascript'>ok( true, 'jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975 (1)' );</script>"));
  973. jQuery("#qunit-fixture").html(valueObj("foo <form><script type='text/javascript'>ok( true, 'jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975 (2)' );</script></form>"));
  974. jQuery("#qunit-fixture").html(valueObj("<script>equal(jQuery.scriptorder++, 0, 'Script is executed in order');equal(jQuery('#scriptorder').length, 1,'Execute after html (even though appears before)')<\/script><span id='scriptorder'><script>equal(jQuery.scriptorder++, 1, 'Script (nested) is executed in order');equal(jQuery('#scriptorder').length, 1,'Execute after html')<\/script></span><script>equal(jQuery.scriptorder++, 2, 'Script (unnested) is executed in order');equal(jQuery('#scriptorder').length, 1,'Execute after html')<\/script>"));
  975. }
  976. test("html(String)", function() {
  977. testHtml(bareObj);
  978. });
  979. test("html(Function)", function() {
  980. testHtml(functionReturningObj);
  981. expect(36);
  982. QUnit.reset();
  983. jQuery("#qunit-fixture").html(function(){
  984. return jQuery(this).text();
  985. });
  986. ok( !/</.test( jQuery("#qunit-fixture").html() ), "Replace html with text." );
  987. ok( jQuery("#qunit-fixture").html().length > 0, "Make sure text exists." );
  988. });
  989. test("html(Function) with incoming value", function() {
  990. expect(20);
  991. var div = jQuery("#qunit-fixture > div"), old = div.map(function(){ return jQuery(this).html() });
  992. div.html(function(i, val) {
  993. equal( val, old[i], "Make sure the incoming value is correct." );
  994. return "<b>test</b>";
  995. });
  996. var pass = true;
  997. div.each(function(){
  998. if ( this.childNodes.length !== 1 ) {
  999. pass = false;
  1000. }
  1001. })
  1002. ok( pass, "Set HTML" );
  1003. QUnit.reset();
  1004. // using contents will get comments regular, text, and comment nodes
  1005. var j = jQuery("#nonnodes").contents();
  1006. old = j.map(function(){ return jQuery(this).html(); });
  1007. j.html(function(i, val) {
  1008. equal( val, old[i], "Make sure the incoming value is correct." );
  1009. return "<b>bold</b>";
  1010. });
  1011. // Handle the case where no comment is in the document
  1012. if ( j.length === 2 ) {
  1013. equal( null, null, "Make sure the incoming value is correct." );
  1014. }
  1015. j.find("b").removeData();
  1016. equal( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
  1017. var $div = jQuery("<div />");
  1018. equal( $div.html(function(i, val) {
  1019. equal( val, "", "Make sure the incoming value is correct." );
  1020. return 5;
  1021. }).html(), "5", "Setting a number as html" );
  1022. equal( $div.html(function(i, val) {
  1023. equal( val, "5", "Make sure the incoming value is correct." );
  1024. return 0;
  1025. }).html(), "0", "Setting a zero as html" );
  1026. var $div2 = jQuery("<div/>"), insert = "&lt;div&gt;hello1&lt;/div&gt;";
  1027. equal( $div2.html(function(i, val) {
  1028. equal( val, "", "Make sure the incoming value is correct." );
  1029. return insert;
  1030. }).html().replace(/>/g, "&gt;"), insert, "Verify escaped insertion." );
  1031. equal( $div2.html(function(i, val) {
  1032. equal( val.replace(/>/g, "&gt;"), insert, "Make sure the incoming value is correct." );
  1033. return "x" + insert;
  1034. }).html().replace(/>/g, "&gt;"), "x" + insert, "Verify escaped insertion." );
  1035. equal( $div2.html(function(i, val) {
  1036. equal( val.replace(/>/g, "&gt;"), "x" + insert, "Make sure the incoming value is correct." );
  1037. return " " + insert;
  1038. }).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );
  1039. });
  1040. var testRemove = function(method) {
  1041. expect(9);
  1042. var first = jQuery("#ap").children(":first");
  1043. first.data("foo", "bar");
  1044. jQuery("#ap").children()[method]();
  1045. ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
  1046. equal( jQuery("#ap").children().length, 0, "Check remove" );
  1047. equal( first.data("foo"), method == "remove" ? null : "bar" );
  1048. QUnit.reset();
  1049. jQuery("#ap").children()[method]("a");
  1050. ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
  1051. equal( jQuery("#ap").children().length, 1, "Check filtered remove" );
  1052. jQuery("#ap").children()[method]("a, code");
  1053. equal( jQuery("#ap").children().length, 0, "Check multi-filtered remove" );
  1054. // using contents will get comments regular, text, and comment nodes
  1055. // Handle the case where no comment is in the document
  1056. ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment remove works" );
  1057. jQuery("#nonnodes").contents()[method]();
  1058. equal( jQuery("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );
  1059. // manually clean up detached elements
  1060. if (method === "detach") {
  1061. first.remove();
  1062. }
  1063. QUnit.reset();
  1064. var count = 0;
  1065. var first = jQuery("#ap").children(":first");
  1066. var cleanUp = first.click(function() { count++ })[method]().appendTo("#qunit-fixture").click();
  1067. equal( method == "remove" ? 0 : 1, count );
  1068. // manually clean up detached elements
  1069. cleanUp.remove();
  1070. };
  1071. test("remove()", function() {
  1072. testRemove("remove");
  1073. });
  1074. test("detach()", function() {
  1075. testRemove("detach");
  1076. });
  1077. test("empty()", function() {
  1078. expect(3);
  1079. equal( jQuery("#ap").children().empty().text().length, 0, "Check text is removed" );
  1080. equal( jQuery("#ap").children().length, 4, "Check elements are not removed" );
  1081. // using contents will get comments regular, text, and comment nodes
  1082. var j = jQuery("#nonnodes").contents();
  1083. j.empty();
  1084. equal( j.html(), "", "Check node,textnode,comment empty works" );
  1085. });
  1086. test("jQuery.cleanData", function() {
  1087. expect(14);
  1088. var type, pos, div, child;
  1089. type = "remove";
  1090. // Should trigger 4 remove event
  1091. div = getDiv().remove();
  1092. // Should both do nothing
  1093. pos = "Outer";
  1094. div.trigger("click");
  1095. pos = "Inner";
  1096. div.children().trigger("click");
  1097. type = "empty";
  1098. div = getDiv();
  1099. child = div.children();
  1100. // Should trigger 2 remove event
  1101. div.empty();
  1102. // Should trigger 1
  1103. pos = "Outer";
  1104. div.trigger("click");
  1105. // Should do nothing
  1106. pos = "Inner";
  1107. child.trigger("click");
  1108. // Should trigger 2
  1109. div.remove();
  1110. type = "html";
  1111. div = getDiv();
  1112. child = div.children();
  1113. // Should trigger 2 remove event
  1114. div.html("<div></div>");
  1115. // Should trigger 1
  1116. pos = "Outer";
  1117. div.trigger("click");
  1118. // Should do nothing
  1119. pos = "Inner";
  1120. child.trigger("click");
  1121. // Should trigger 2
  1122. div.remove();
  1123. function getDiv() {
  1124. var div = jQuery("<div class='outer'><div class='inner'></div></div>").click(function(){
  1125. ok( true, type + " " + pos + " Click event fired." );
  1126. }).focus(function(){
  1127. ok( true, type + " " + pos + " Focus event fired." );
  1128. }).find("div").click(function(){
  1129. ok( false, type + " " + pos + " Click event fired." );
  1130. }).focus(function(){
  1131. ok( false, type + " " + pos + " Focus event fired." );
  1132. }).end().appendTo("body");
  1133. div[0].detachEvent = div[0].removeEventListener = function(t){
  1134. ok( true, type + " Outer " + t + " event unbound" );
  1135. };
  1136. div[0].firstChild.detachEvent = div[0].firstChild.removeEventListener = function(t){
  1137. ok( true, type + " Inner " + t + " event unbound" );
  1138. };
  1139. return div;
  1140. }
  1141. });
  1142. test("jQuery.buildFragment - no plain-text caching (Bug #6779)", function() {
  1143. expect(1);
  1144. // DOM manipulation fails if added text matches an Object method
  1145. var $f = jQuery( "<div />" ).appendTo( "#qunit-fixture" ),
  1146. bad = [ "start-", "toString", "hasOwnProperty", "append", "here&there!", "-end" ];
  1147. for ( var i=0; i < bad.length; i++ ) {
  1148. try {
  1149. $f.append( bad[i] );
  1150. }
  1151. catch(e) {}
  1152. }
  1153. equal($f.text(), bad.join(""), "Cached strings that match Object properties");
  1154. $f.remove();
  1155. });
  1156. test( "jQuery.html - execute scripts escaped with html comment or CDATA (#9221)", function() {
  1157. expect( 3 );
  1158. jQuery( [
  1159. '<script type="text/javascript">',
  1160. '<!--',
  1161. 'ok( true, "<!-- handled" );',
  1162. '//-->',
  1163. '</script>'
  1164. ].join ( "\n" ) ).appendTo( "#qunit-fixture" );
  1165. jQuery( [
  1166. '<script type="text/javascript">',
  1167. '<![CDATA[',
  1168. 'ok( true, "<![CDATA[ handled" );',
  1169. '//]]>',
  1170. '</script>'
  1171. ].join ( "\n" ) ).appendTo( "#qunit-fixture" );
  1172. jQuery( [
  1173. '<script type="text/javascript">',
  1174. '<!--//--><![CDATA[//><!--',
  1175. 'ok( true, "<!--//--><![CDATA[//><!-- (Drupal case) handled" );',
  1176. '//--><!]]>',
  1177. '</script>'
  1178. ].join ( "\n" ) ).appendTo( "#qunit-fixture" );
  1179. });
  1180. test("jQuery.buildFragment - plain objects are not a document #8950", function() {
  1181. expect(1);
  1182. try {
  1183. jQuery('<input type="hidden">', {});
  1184. ok( true, "Does not allow attribute object to be treated like a doc object");
  1185. } catch (e) {}
  1186. });
  1187. test("jQuery.clone - no exceptions for object elements #9587", function() {
  1188. expect(1);
  1189. try {
  1190. jQuery("#no-clone-exception").clone();
  1191. ok( true, "cloned with no exceptions" );
  1192. } catch( e ) {
  1193. ok( false, e.message );
  1194. }
  1195. });
  1196. test("jQuery(<tag>) & wrap[Inner/All]() handle unknown elems (#10667)", function() {
  1197. expect(2);
  1198. var $wraptarget = jQuery( "<div id='wrap-target'>Target</div>" ).appendTo( "#qunit-fixture" ),
  1199. $section = jQuery( "<section>" ).appendTo( "#qunit-fixture" );
  1200. $wraptarget.wrapAll("<aside style='background-color:green'></aside>");
  1201. notEqual( $wraptarget.parent("aside").css("background-color"), "transparent", "HTML5 elements created with wrapAll inherit styles" );
  1202. notEqual( $section.css("background-color"), "transparent", "HTML5 elements create with jQuery( string ) inherit styles" );
  1203. });
  1204. test("Cloned, detached HTML5 elems (#10667,10670)", function() {
  1205. expect(7);
  1206. var $section = jQuery( "<section>" ).appendTo( "#qunit-fixture" ),
  1207. $clone;
  1208. // First clone
  1209. $clone = $section.clone();
  1210. // Infer that the test is being run in IE<=8
  1211. if ( $clone[0].outerHTML && !jQuery.support.opacity ) {
  1212. // This branch tests cloning nodes by reading the outerHTML, used only in IE<=8
  1213. equal( $clone[0].outerHTML, "<section></section>", "detached clone outerHTML matches '<section></section>'" );
  1214. } else {
  1215. // This branch tests a known behaviour in modern browsers that should never fail.
  1216. // Included for expected test count symmetry (expecting 1)
  1217. equal( $clone[0].nodeName, "SECTION", "detached clone nodeName matches 'SECTION' in modern browsers" );
  1218. }
  1219. // Bind an event
  1220. $section.bind( "click", function( event ) {
  1221. ok( true, "clone fired event" );
  1222. });
  1223. // Second clone (will have an event bound)
  1224. $clone = $section.clone( true );
  1225. // Trigger an event from the first clone
  1226. $clone.trigger( "click" );
  1227. $clone.unbind( "click" );
  1228. // Add a child node with text to the original
  1229. $section.append( "<p>Hello</p>" );
  1230. // Third clone (will have child node and text)
  1231. $clone = $section.clone( true );
  1232. equal( $clone.find("p").text(), "Hello", "Assert text in child of clone" );
  1233. // Trigger an event from the third clone
  1234. $clone.trigger( "click" );
  1235. $clone.unbind( "click" );
  1236. // Add attributes to copy
  1237. $section.attr({
  1238. "class": "foo bar baz",
  1239. "title": "This is a title"
  1240. });
  1241. // Fourth clone (will have newly added attributes)
  1242. $clone = $section.clone( true );
  1243. equal( $clone.attr("class"), $section.attr("class"), "clone and element have same class attribute" );
  1244. equal( $clone.attr("title"), $section.attr("title"), "clone and element have same title attribute" );
  1245. // Remove the original
  1246. $section.remove();
  1247. // Clone the clone
  1248. $section = $clone.clone( true );
  1249. // Remove the clone
  1250. $clone.remove();
  1251. // Trigger an event from the clone of the clone
  1252. $section.trigger( "click" );
  1253. // Unbind any remaining events
  1254. $section.unbind( "click" );
  1255. $clone.unbind( "click" );
  1256. });
  1257. test("jQuery.fragments cache expectations", function() {
  1258. expect( 10 );
  1259. jQuery.fragments = {};
  1260. function fragmentCacheSize() {
  1261. var n = 0, c;
  1262. for ( c in jQuery.fragments ) {
  1263. n++;
  1264. }
  1265. return n;
  1266. }
  1267. jQuery("<li></li>");
  1268. jQuery("<li>?</li>");
  1269. jQuery("<li>whip</li>");
  1270. jQuery("<li>it</li>");
  1271. jQuery("<li>good</li>");
  1272. jQuery("<div></div>");
  1273. jQuery("<div><div><span></span></div></div>");
  1274. jQuery("<tr><td></td></tr>");
  1275. jQuery("<tr><td></tr>");
  1276. jQuery("<li>aaa</li>");
  1277. jQuery("<ul><li>?</li></ul>");
  1278. jQuery("<div><p>arf</p>nnn</div>");
  1279. jQuery("<div><p>dog</p>?</div>");
  1280. jQuery("<span><span>");
  1281. equal( fragmentCacheSize(), 12, "12 entries exist in jQuery.fragments, 1" );
  1282. jQuery.each( [
  1283. "<tr><td></td></tr>",
  1284. "<ul><li>?</li></ul>",
  1285. "<div><p>dog</p>?</div>",
  1286. "<span><span>"
  1287. ], function( i, frag ) {
  1288. jQuery( frag );
  1289. equal( jQuery.fragments[ frag ].nodeType, 11, "Second call with " + frag + " creates a cached DocumentFragment, has nodeType 11" );
  1290. ok( jQuery.fragments[ frag ].childNodes.length, "Second call with " + frag + " creates a cached DocumentFragment, has childNodes with length" );
  1291. });
  1292. equal( fragmentCacheSize(), 12, "12 entries exist in jQuery.fragments, 2" );
  1293. });