OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <style> | 3 <style> |
4 applet, embed, object { display: block; } | 4 embed, object { display: block; } |
5 </style> | 5 </style> |
6 | 6 |
7 <!-- The placeholders inserted below should be shown with some suitable style. -
-> | 7 <!-- The placeholders inserted below should be shown with some suitable style. -
-> |
8 <object id="plugin1" type="application/x-fake-plugin"></object> | 8 <object id="plugin1" type="application/x-fake-plugin"></object> |
9 <object id="plugin2" type="application/x-fake-plugin"></object> | 9 <object id="plugin2" type="application/x-fake-plugin"></object> |
10 | 10 |
11 <script> | 11 <script> |
12 internals.forcePluginPlaceholder(document.getElementById('plugin1'), { message:
"Sorry, but your plugin couldn't be loaded." }); | 12 internals.forcePluginPlaceholder(document.getElementById('plugin1'), { message:
"Sorry, but your plugin couldn't be loaded." }); |
13 internals.forcePluginPlaceholder(document.getElementById('plugin2'), { message:
"Sorry, but your plugin couldn't be loaded.", closeable: true }); | 13 internals.forcePluginPlaceholder(document.getElementById('plugin2'), { message:
"Sorry, but your plugin couldn't be loaded.", closeable: true }); |
14 </script> | 14 </script> |
OLD | NEW |