Range-mutations-removeChild.html (547B)
1 <!doctype html> 2 <title>Range mutation tests - removeChild</title> 3 <link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name> 4 <meta name=timeout content=long> 5 6 <div id=log></div> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="../common.js"></script> 10 <script src="Range-mutations.js"></script> 11 <script> 12 doTests(removeChildTests, function(params) { return params[0] + ".parentNode.removeChild(" + params[0] + ")" }, testRemoveChild); 13 testDiv.style.display = "none"; 14 </script>