OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script type="text/javascript"> | 3 <script type="text/javascript"> |
4 function SetSrc(src) { | 4 function SetSrc(src) { |
5 plugin = document.getElementById('plugin'); | 5 plugin = document.getElementById('plugin'); |
6 plugin.src = src; | 6 plugin.src = src; |
7 } | 7 } |
8 </script> | 8 </script> |
9 </head> | 9 </head> |
10 | 10 |
11 <body> | 11 <body> |
12 <button id="before" tabindex="0">Before</button> | 12 <button id="before" tabindex="0">Before</button> |
13 <object id="plugin" | 13 <object id="plugin" |
14 tabindex="0" | 14 tabindex="0" |
15 type="application/new-browser-plugin" | 15 type="application/browser-plugin" |
16 width="640" | 16 width="640" |
17 height="480" | 17 height="480" |
18 border="0px"></object> | 18 border="0px"></object> |
19 <button id="after" tabindex="0">After</button> | 19 <button id="after" tabindex="0">After</button> |
20 </body> | 20 </body> |
21 </html> | 21 </html> |
OLD | NEW |