mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
efc5938659
--HG-- extra : rebase_source : 858213f65b5bd7d8872afd8205424c3bfdfe1e98
19 lines
322 B
HTML
19 lines
322 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var fieldset = document.getElementById("f");
|
|
for (var i = 0; i < 2; ++i)
|
|
fieldset.appendChild(document.createElement("span"));
|
|
}
|
|
|
|
</script>
|
|
<body onload="boom();">
|
|
<fieldset id="f" style="overflow: auto;"></fieldset>
|
|
</body>
|
|
</html>
|