mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
416 B
HTML
31 lines
416 B
HTML
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function init()
|
|
{
|
|
var form1 = document.getElementById("form1");
|
|
var tr1 = document.getElementById("tr1");
|
|
|
|
tr1.appendChild(form1);
|
|
tr1.removeChild(form1);
|
|
}
|
|
|
|
window.addEventListener("load", init, false);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<table><tr id="tr1"><td></td></tr></table>
|
|
|
|
<form id="form1"><span style="float:left"></span></form>
|
|
|
|
</body>
|
|
|
|
</html>
|