Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: webkit/tools/pepper_test_plugin/test_page.html

Issue 915002: Create a toplevel gfx/ dir and seed it with icon_util.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « views/window/window_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « views/window/window_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698