mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
19 lines
433 B
HTML
19 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#i { border: 2px solid; }
|
|
#i::after { display: block; content: "Two"; }
|
|
</style>
|
|
<script>
|
|
function doTest() {
|
|
var i = document.getElementById("i");
|
|
i.insertBefore(document.createTextNode("One"), i.firstChild);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="doTest()">
|
|
<span id="i"><span style="display: none"></span></span>
|
|
</body>
|
|
</html>
|