blob: 8c054a148490ab098e6992af957979ea01501bd6 [file] [log] [blame]
<script>
var x = 0;
function write_stuff()
{
x++;
document.open();
document.write("<p>" + x + "</p>");
}
</script>
<body onload="write_stuff()">
</body>