gecko/layout/reftests/ib-split/insert-into-split-inline-2g.html

28 lines
595 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function doit() {
var newNode = document.createElement("div");
newNode.appendChild(document.createTextNode("Seven"));
document.getElementById("target")
.insertBefore(newNode, document.getElementById("insertion"));
}
</script>
<style>
body > span { border: 3px solid blue }
</style>
</head>
<body onload='doit()'>
<span id="target"
><span>One</span
><span>Two</span
><span>Three</span
><div>Four</div
><div>Five</div
><span>Six</span
><div id="insertion">Eight</div
></span>
</body>
</html>