haikuwebkit/LayoutTests/fast/events/onload-re-entry.html

13 lines
166 B
HTML

<script>
var x = 0;
function write_stuff()
{
x++;
document.open();
document.write("<p>" + x + "</p>");
}
</script>
<body onload="write_stuff()">
</body>