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

Side by Side Diff: tests/srpc/examples_ppapi.html

Issue 6177007: ppapi_proxy: Support loading and reading urls. Proxy URLLoader.... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 11 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
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html> 3 <html>
4 <!-- Copyright 2010 Google Inc. All rights reserved. --> 4 <!-- Copyright 2010 Google Inc. All rights reserved. -->
5 <head> 5 <head>
6 <title> Browser Test Page </title> 6 <title> Browser Test Page </title>
7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
8 <META HTTP-EQUIV="Expires" CONTENT="-1"> 8 <META HTTP-EQUIV="Expires" CONTENT="-1">
9 <script type="text/javascript"> 9 <script type="text/javascript">
10 //<![CDATA[ 10 //<![CDATA[
(...skipping 14 matching lines...) Expand all
25 [ 'performance', 'srpc_perf_ppapi.html' ], 25 [ 'performance', 'srpc_perf_ppapi.html' ],
26 // TODO(polina): enable when we support UrlAsNaClDesc. 26 // TODO(polina): enable when we support UrlAsNaClDesc.
27 // [ 'url content as NaCl resource descriptor [not supported]', 27 // [ 'url content as NaCl resource descriptor [not supported]',
28 // 'srpc_url_as_nacl_desc_ppapi.html' ], 28 // 'srpc_url_as_nacl_desc_ppapi.html' ],
29 ] 29 ]
30 ], 30 ],
31 [ 'PPAPI Nexe Tests', 31 [ 'PPAPI Nexe Tests',
32 [ [ 'scripting', 'basic_object.html' ], 32 [ [ 'scripting', 'basic_object.html' ],
33 [ 'events', 'event_example.html' ], 33 [ 'events', 'event_example.html' ],
34 [ '2D', 'ppapi_example_2d.html' ], 34 [ '2D', 'ppapi_example_2d.html' ],
35 // TODO(polina): enable when PPB_URL* proxy support is in. 35 [ 'url loading [not supported]', 'ppapi_geturl.html' ],
36 // [ 'url loading [not supported]', 'ppapi_geturl.html' ],
37 ] 36 ]
38 ] 37 ]
39 ]; 38 ];
40 39
41 var buildTable = function() { 40 var buildTable = function() {
42 var num_test_classes = test_table_descriptor.length; 41 var num_test_classes = test_table_descriptor.length;
43 var i; 42 var i;
44 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>'; 43 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>';
45 // Build the table heading row. 44 // Build the table heading row.
46 for (i = 0; i < num_test_classes; ++i) { 45 for (i = 0; i < num_test_classes; ++i) {
(...skipping 28 matching lines...) Expand all
75 table_div_element.innerHTML = table; 74 table_div_element.innerHTML = table;
76 } 75 }
77 //]]> 76 //]]>
78 </script> 77 </script>
79 </head> 78 </head>
80 <body onload="buildTable()"> 79 <body onload="buildTable()">
81 <h1> PPAPI Native Client Chrome Browser Tests</h1> 80 <h1> PPAPI Native Client Chrome Browser Tests</h1>
82 <div id="table_div"> </div> 81 <div id="table_div"> </div>
83 </body> 82 </body>
84 </html> 83 </html>
OLDNEW
« tests/ppapi_geturl/url_load_request.cc ('K') | « tests/ppapi_geturl/url_load_request.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698