[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / content / test / data / npapi / self_delete_plugin_geturl.html
blob2d14340b4ff0cfe71ade2282ac6f5729ef3a913b
1 <html>
2 <head>
3 <title>Self Deleting Plugin Test - GetURL</title>
4 <script src="npapi.js"></script>
5 <script>
6 function DeletePluginWithinScript() {
7 var plugin_div = document.getElementById("PluginDiv");
8 plugin_div.innerHTML = "Object Deleted";
11 function CallGetUrl() {
12 var plg = window.document["plg"];
13 plg.getURL("javascript:DeletePluginWithinScript()");
15 </script>
16 </head>
18 <body>
20 <h2>Test to delete a plugin during script execution</h2>
22 <p>
23 This test is for a corner case when a plugin executes a script
24 that deletes the invoking plugin itself.
25 </p>
27 <DIV ID=PluginDiv>
28 <embed name="plg" type="application/x-webkit-test-netscape"></embed>
29 </DIV>
30 <script>
31 CallGetUrl();
32 onSuccess("self_delete_plugin_geturl", 1);
33 </script>
35 </body>
36 </html>