mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
19 lines
383 B
HTML
19 lines
383 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.appendChild(document.createTextNode("One"));
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="doTest()">
|
||
|
<span id="i"></span>
|
||
|
</body>
|
||
|
</html>
|