blob: a251f53cede5f65b043d5faa0d3561389db597b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<!--
This test checks to make sure an alert before onLoad causes
prerendering to fail.
-->
<head>
<title>Prerender alert before onload cancellation</title>
<script language="javascript" type="text/javascript">
alert("Testing prerender");
</script>
</head>
<body></body>
</html>
|