mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
386 B
HTML
22 lines
386 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var floater = document.createElement("span");
|
|
floater.style.cssFloat = "right";
|
|
floater.appendChild(document.createTextNode("float"));
|
|
|
|
document.getElementById("s").appendChild(floater);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<span><span><span><span id="s"><div></div></span></span></span></span>
|
|
|
|
</body>
|
|
</html>
|