blob: 3d0ad933531b330aa859e8294b8968c0e89b940a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<script>
function runTest() {
var div = document.createElement("div");
div.appendChild(document.createTextNode("New Div"));
document.body.insertBefore(div, document.getElementById("insertion"));
}
</script>
</head>
<body onload="runTest()">
<div style="display: table-cell">Table cell</div
><div id="insertion">Block</div>
</body>
</html>
|