Sign in
webkit
/
WebKit
/
23e576feb4d75c9fc45f35cc19515c4cf11389a1
/
.
/
LayoutTests
/
fast
/
events
/
onload-re-entry.html
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>