OLD | NEW |
| (Empty) |
1 <html> | |
2 <head> | |
3 <script src="npapi.js"></script> | |
4 <script> | |
5 function GetMagicNumber() { | |
6 return 42; | |
7 } | |
8 | |
9 function onSuccess(name, id) { | |
10 parent.onSuccess(name, id); | |
11 } | |
12 | |
13 function onFailure(name, id, status) { | |
14 parent.onFailure(name, id, status); | |
15 } | |
16 </script> | |
17 </head> | |
18 | |
19 <body> | |
20 <div id=PluginDiv> | |
21 <embed type="application/vnd.npapi-test" | |
22 src="foo" | |
23 name="ensure_scripting_works_in_destroy" | |
24 id="1" | |
25 mode="np_embed" | |
26 > | |
27 </DIV> | |
28 <script> | |
29 var height = document.body.offsetHeight; | |
30 </script> | |
31 | |
32 </body> | |
33 </html> | |
OLD | NEW |