| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <script src="npapi.js"></script> | |
| 4 <script> | |
| 5 function TestCallback() { | |
| 6 onSuccess("multiple_instances_sync_calls", 1); | |
| 7 } | |
| 8 </script> | |
| 9 </head> | |
| 10 <body> | |
| 11 <div id="statusPanel" style="border: 1px solid red; width: 100%"> | |
| 12 Test running.... | |
| 13 </div> | |
| 14 | |
| 15 NPObject Proxy Test<p> | |
| 16 | |
| 17 Tests the case that involves two plugin instances with second | |
| 18 instance making sync calls to the renderer while the first one | |
| 19 is still servicing an incoming sync request | |
| 20 | |
| 21 <DIV ID="plugin"> | |
| 22 <embed type="application/vnd.npapi-test" | |
| 23 src="foo" | |
| 24 name="multiple_instances_sync_calls" | |
| 25 id="1" | |
| 26 width="100" | |
| 27 height="100" | |
| 28 mode="np_embed"></embed> | |
| 29 <embed type="application/vnd.npapi-test" | |
| 30 src="foo" | |
| 31 name="multiple_instances_sync_calls" | |
| 32 id="2" | |
| 33 width="100" | |
| 34 height="100" | |
| 35 mode="np_embed"></embed> | |
| 36 </DIV> | |
| 37 </body> | |
| 38 </html> | |
| OLD | NEW |