test_bug698061.html (1231B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- 4 https://bugzilla.mozilla.org/show_bug.cgi?id=698061 5 --> 6 <head> 7 <title>Test for Bug 698061</title> 8 <script src="/tests/SimpleTest/SimpleTest.js"></script> 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 10 </head> 11 <body> 12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=698061">Mozilla Bug 698061</a> 13 <p id="display"></p> 14 <div id="content" style="display: none"> 15 16 </div> 17 <pre id="test"> 18 <script type="application/javascript"> 19 20 /** Test for Bug 698061 */ 21 22 var d = document.createElement("div"); 23 d.innerHTML = "<span>hello </span><span>world</span>"; 24 25 var imported = document.importNode(d); 26 is(imported.childNodes.length, 0, "Should not have cloned child nodes with no deep arg!"); 27 is(imported.textContent, "", "Should not have cloned text with no deep arg!"); 28 29 imported = document.importNode(d, true); 30 is(imported.childNodes.length, 2, "Should have cloned child nodes!"); 31 is(imported.textContent, "hello world", "Should have cloned text!"); 32 33 imported = document.importNode(d, false); 34 is(imported.childNodes.length, 0, "Shouldn't have cloned child nodes!"); 35 is(imported.textContent, "", "Shouldn't have cloned text!"); 36 37 </script> 38 </pre> 39 </body> 40 </html>