OLD | NEW |
| (Empty) |
1 <html> | |
2 <body><p> | |
3 This is some text to force a scrollbar to appear. | |
4 This is some text to force a scrollbar to appear. | |
5 This is some text to force a scrollbar to appear. | |
6 </p> | |
7 <img id="i" onbeforeload="beforeload()" onload="pass()"> | |
8 </body> | |
9 <script> | |
10 function beforeload() | |
11 { | |
12 setTimeout(function() { | |
13 var win = window.parent; | |
14 win.document.getElementById("iframe").style.display = "none"; | |
15 }); | |
16 return true; | |
17 } | |
18 | |
19 function pass() | |
20 { | |
21 var win = window.parent; | |
22 win.document.getElementById("iframe").style.display = ""; | |
23 win.document.body.appendChild(document.createTextNode("PASSED")); | |
24 if (window.testRunner) | |
25 testRunner.notifyDone(); | |
26 } | |
27 </script> | |
28 </html> | |
OLD | NEW |