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