OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
4 function runTest() { | 4 function runTest() { |
5 document.plugin.remember(window.top); | 5 document.plugin.remember(window.top); |
6 window.top.onSubframeLoaded(); | 6 window.top.onSubframeLoaded(); |
7 } | 7 } |
8 | 8 |
9 function outputResult() { | 9 function outputResult() { |
10 window.top.document.getElementById('result').innerHTML = 'FAILURE'; | 10 window.top.document.getElementById('result').innerHTML = 'FAILURE'; |
11 } | 11 } |
12 </script> | 12 </script> |
13 </head> | 13 </head> |
14 <body onload="runTest();"> | 14 <body onload="runTest();"> |
15 <embed name="plugin" type="application/x-webkit-test-netscape"></embed> | 15 <embed name="plugin" type="application/x-webkit-test-netscape"></embed> |
16 </body> | 16 </body> |
17 </html> | 17 </html> |
OLD | NEW |