gecko-dev/layout/reftests/ib-split/insert-into-split-inline-7....

22 строки
478 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function doit() {
var newNode = document.createElement("div");
newNode.appendChild(document.createTextNode("One"));
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 id="insertion">Two</div
></span>
</body>
</html>