https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4b8180a1a71027dfa2a0cceccf37a93a42641155 authored by James Graham on 10 April 2018, 19:13:37 UTC
Add a infrastructure test to ensure that we can set Firefox prefs.
Tip revision: 4b8180a
Range-mutations-removeChild.html
<!doctype html>
<title>Range mutation tests - removeChild</title>
<link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name>
<meta name=timeout content=long>

<div id=log></div>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../common.js"></script>
<script src="Range-mutations.js"></script>
<script>
doTests(removeChildTests, function(params) { return params[0] + ".parentNode.removeChild(" + params[0] + ")" }, testRemoveChild);
testDiv.style.display = "none";
</script>
back to top