3 This test checks to make sure an alert after onLoad causes
7 <title>Prerender alert after onload cancellation
</title>
9 <script language=
"javascript" type=
"text/javascript">
10 window
.onload = function() {
11 // Delay the alert by an event loop iteration so the alert
12 // happens after the page has loaded, rather than just before.
13 setTimeout(alert
, 0, "Testing prerender");