mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
342 B
HTML
18 lines
342 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var b = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
|
|
b.style.position = "absolute";
|
|
document.getElementById("a").appendChild(b);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"><div id="a" style="display: -moz-inline-stack; position: relative">x</div></body>
|
|
</html>
|
|
|