OLD | NEW |
---|---|
1 <html> | 1 <html> |
2 <script> | 2 <script> |
3 if (window.testRunner) | 3 function onLoad() { |
4 testRunner.notifyDone(); | 4 if (window.testRunner) |
5 testRunner.notifyDone(); | |
6 } | |
5 </script> | 7 </script> |
6 <body> | 8 <body onload="onLoad()"> |
7 This page calls testRunner.notifyDone(). | 9 This page calls testRunner.notifyDone(). |
10 </body> | |
8 </html> | 11 </html> |
OLD | NEW |