mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
307 B
HTML
18 lines
307 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
|
|
document.getElementById("i").appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "div"));
|
|
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<div><span><span id="i"><div></div></span></span></div>
|
|
|
|
</body>
|
|
</html>
|