| OLD | NEW |
| 1 <body> | 1 <body> |
| 2 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=35965">bug 35965</a
>: | 2 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=35965">bug 35965</a
>: |
| 3 Crash when passing an object returned from plug-in back to the plug-in.</p> | 3 Crash when passing an object returned from plugin back to the plugin.</p> |
| 4 <p>PASS if no crash.</p> | 4 <p>PASS if no crash.</p> |
| 5 <embed id="plug-in" type="application/x-webkit-test-netscape" width=100 height=1
00></embed> | 5 <embed id="plugin" type="application/x-webkit-test-netscape" width=100 height=10
0></embed> |
| 6 <script> | 6 <script> |
| 7 if (window.testRunner) | 7 if (window.testRunner) |
| 8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
| 9 | 9 |
| 10 var plugIn = document.getElementById("plug-in"); | 10 var plugIn = document.getElementById("plugin"); |
| 11 | 11 |
| 12 plugIn.remember(plugIn.testObject); | 12 plugIn.remember(plugIn.testObject); |
| 13 | 13 |
| 14 </script> | 14 </script> |
| 15 </body> | 15 </body> |
| OLD | NEW |