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