| OLD | NEW |
| 1 <hmtl> | 1 <hmtl> |
| 2 <body> | 2 <body> |
| 3 <embed type="application/vnd.npapi-test" | 3 <embed type="application/vnd.npapi-test" |
| 4 height="300" | 4 height="300" |
| 5 width="100%" | 5 width="100%" |
| 6 name="set_title_in_set_window_and_paint" | 6 name="set_title_in_set_window_and_paint" |
| 7 id="1" | 7 id="1" |
| 8 mode="np_embed"/> | 8 mode="np_embed"/> |
| 9 </body> | 9 </body> |
| 10 | 10 |
| 11 <script> | 11 <script> |
| 12 function PluginCreated() { | 12 function PluginCreated() { |
| 13 window.document.title = "created"; | 13 window.document.title = "created"; |
| 14 return; | 14 return; |
| 15 } | 15 } |
| 16 | 16 |
| 17 function PluginShown() { | 17 function PluginShown() { |
| 18 window.document.title = "shown"; | 18 window.document.title = "shown"; |
| 19 return; | 19 return; |
| 20 } | 20 } |
| 21 </script> | 21 </script> |
| 22 | 22 |
| 23 </hmtl> | 23 </hmtl> |
| OLD | NEW |