OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 |
| 3 <head> |
| 4 <script src="npapi.js"></script> |
| 5 <script> |
| 6 function deleteShortLivedInstance() { |
| 7 var shortLivedDiv = document.getElementById("short_lived_div"); |
| 8 shortLivedDiv.innerHTML = "Instance deleted"; |
| 9 } |
| 10 </script> |
| 11 </head> |
| 12 |
| 13 |
| 14 <body> |
| 15 <div id="statusPanel" style="border: 1px solid red; width: 100%"> |
| 16 Test running.... |
| 17 </div> |
| 18 |
| 19 |
| 20 NPAPI NPN_PluginThreadAsyncCall test<p> |
| 21 Tests that a plugin can schedule async callbacks.<P> |
| 22 |
| 23 <embed type="application/vnd.npapi-test" |
| 24 src="foo" |
| 25 name="plugin_thread_async_call" |
| 26 id="1" |
| 27 short_lived="false" |
| 28 mode="np_embed" |
| 29 > |
| 30 |
| 31 <div id="short_lived_div"> |
| 32 <embed type="application/vnd.npapi-test" |
| 33 src="foo" |
| 34 name="plugin_thread_async_call" |
| 35 id="2" |
| 36 short_lived="true" |
| 37 mode="np_embed" |
| 38 > |
| 39 </div> |
| 40 |
| 41 </body> |
| 42 </html> |
OLD | NEW |