OLD | NEW |
1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
2 <head> | 2 <head> |
3 <title> Pepper Plugin Demo </title> | 3 <title> Pepper Plugin Demo </title> |
4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
5 var event_box; | 5 var event_box; |
6 | 6 |
7 var addLine = function(line) { | 7 var addLine = function(line) { |
8 event_box.innerHTML = line + '<br>' + event_box.innerHTML; | 8 event_box.innerHTML = line + '<br>' + event_box.innerHTML; |
9 } | 9 } |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 </head> | 22 </head> |
23 | 23 |
24 <body style="background-image:url(http://www.google.com/intl/en_ALL/images/logo.
gif); background-repeat:repeat;" onload="runScripts()"> | 24 <body style="background-image:url(http://www.google.com/intl/en_ALL/images/logo.
gif); background-repeat:repeat;" onload="runScripts()"> |
25 | 25 |
26 <p> | 26 <p> |
27 This page embeds a file declared as the pepper test plugins MIME type so that it
will get loaded for testing. | 27 This page embeds a file declared as the pepper test plugins MIME type so that it
will get loaded for testing. |
28 </p> | 28 </p> |
29 <table> | 29 <table> |
30 <tr> | 30 <tr> |
31 <td valign="top" width="50%"> | 31 <td valign="top" width="50%"> |
32 <object id="plugin" type="pepper-application/x-pepper-test-plugin" width="400" h
eight="400" dimensions="3" /> | 32 <object id="plugin" type="pepper-application/x-pepper-test-plugin" width="400" h
eight="400" dimensions="2" /> |
33 </td> | 33 </td> |
34 <td valign="top" style="background-color:Silver" width="50%"> | 34 <td valign="top" style="background-color:Silver" width="50%"> |
35 <div id="event_text_box" style="width:400px; height:400px; overflow:auto"> | 35 <div id="event_text_box" style="width:400px; height:400px; overflow:auto"> |
36 </div> | 36 </div> |
37 </td> | 37 </td> |
38 </tr> | 38 </tr> |
39 </table> | 39 </table> |
40 | 40 |
41 </body> | 41 </body> |
42 </html> | 42 </html> |
OLD | NEW |