Unregister from GCM when the only GCM app is removed
[chromium-blink-merge.git] / chrome / test / data / prerender / prerender_alert_after_onload.html
blobdd54cdbe7bf96f0c7de8d164e4581bda6ec67c5f
1 <html>
2 <!--
3 This test checks to make sure an alert after onLoad causes
4 prerendering to fail.
5 -->
6 <head>
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");
15 </script>
16 </head>
17 <body></body>
18 </html>