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

Side by Side Diff: ppapi/native_client/tests/examples.html

Issue 10914053: Relocating files in the nacl repo that belong in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge and fix windows Created 8 years, 3 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 2011 Google Inc. All rights reserved. --> 4 <!-- Copyright 2011 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[
11 // test_table descriptor consists of a number of rows. 11 // test_table descriptor consists of a number of rows.
12 // Each row contains a two element array. 12 // Each row contains a two element array.
13 // The first element is a "class" of test, which becomes a column heading. 13 // The first element is a "class" of test, which becomes a column heading.
14 // The second element is a list of test descriptors. 14 // The second element is a list of test descriptors.
15 // Each test descriptor is a two element array containing a description and a 15 // Each test descriptor is a two element array containing a description and a
16 // link. 16 // link.
17 var test_table_descriptor = [ 17 var test_table_descriptor = [
18 ['SRPC Nexe Tests',
19 [
20 ['hello world', 'srpc_hw.html'],
Nick Bray 2012/09/06 17:11:58 Huh? Why are dead SRPC nexes being added? This d
bradn 2012/09/06 18:53:16 Done.
21 ['parameter passing', 'srpc_basic.html'],
22 ['resource descriptor transfer', 'srpc_nrd_xfer.html']
23 ]
24 ],
25 ['SRPC Nexe Performance',
26 [
27 ['performance', 'srpc_perf.html'],
28 ['mandelbrot tiled', 'mandel_tiled.html'],
29 ['automatic page reloading', 'autoloader.html']
30 ]
31 ],
18 ['PPAPI Nexe Examples', 32 ['PPAPI Nexe Examples',
19 [ 33 [
20 ['scripting', 'basic_object.html'], 34 ['scripting', 'basic_object.html'],
21 ['events', 'ppapi_example_events.html'], 35 ['events', 'ppapi_example_events.html'],
22 ['audio', 'ppapi_example_audio.html'], 36 ['audio', 'ppapi_example_audio.html'],
23 ['url loading', 'ppapi_geturl.html'], 37 ['url loading', 'ppapi_geturl.html'],
24 ['spinning earth - C', 'earth_c.html'], 38 ['spinning earth - C', 'earth_c.html'],
25 ['spinning earth - C++', 'earth_cc.html'], 39 ['spinning earth - C++', 'earth_cc.html'],
26 ['progress events', 'ppapi_progress_events.html'], 40 ['progress events', 'ppapi_progress_events.html'],
27 ['bad', 'ppapi_bad.html'], 41 ['bad', 'ppapi_bad.html'],
28 ['crash', 'ppapi_crash.html'], 42 ['crash', 'ppapi_crash.html'],
29 ['gles book', 'ppapi_gles_book.html'] 43 ['gles book', 'ppapi_gles_book.html']
30 ] 44 ]
31 ], 45 ],
32 ['PPAPI Proxy Tests', 46 ['PPAPI Proxy Tests',
33 [ 47 [
34 ['PPB_Core', 'ppapi_ppb_core.html'], 48 ['PPB_Core', 'ppapi_ppb_core.html'],
35 ['PPB_Graphics2D', 'ppapi_ppb_graphics2d.html'], 49 ['PPB_Graphics2D', 'ppapi_ppb_graphics2d.html'],
36 ['PPB_Graphics3D', 'ppapi_ppb_graphics3d.html'], 50 ['PPB_Graphics3D', 'ppapi_ppb_graphics3d.html'],
37 ['PPB_FileSystem', 'ppapi_ppb_file_system.html'], 51 ['PPB_FileSystem', 'ppapi_ppb_file_system.html'],
38 ['PPB_ImageData', 'ppapi_ppb_image_data.html'], 52 ['PPB_ImageData', 'ppapi_ppb_image_data.html'],
39 ['PPB_Instance', 'ppapi_ppb_instance.html'], 53 ['PPB_Instance', 'ppapi_ppb_instance.html'],
40 ['PPB_Memory', 'ppapi_ppb_memory.html'], 54 ['PPB_Memory', 'ppapi_ppb_memory.html'],
41 ['PPB_Messaging/PPP_Messaging', 'ppapi_messaging.html'], 55 ['PPB_Messaging/PPP_Messaging', 'ppapi_messaging.html'],
56 ['PPB_Scrollbar', 'ppapi_ppb_scrollbar.html'],
42 ['PPB_URLRequestInfo', 'ppapi_ppb_url_request_info.html'], 57 ['PPB_URLRequestInfo', 'ppapi_ppb_url_request_info.html'],
43 ['PPP_Instance', 'ppapi_ppp_instance.html'] 58 ['PPP_Instance', 'ppapi_ppp_instance.html']
44 ] 59 ]
45 ], 60 ],
46 ['chrome/ppapi/{examples|tests}', 61 ['chrome/ppapi/{examples|tests}',
47 [ 62 [
48 ['examples 2d', 'ppapi_example_2d.html'], 63 ['examples 2d', 'ppapi_example_2d.html'],
49 ['examples font', 'ppapi_example_font.html'], 64 ['examples font', 'ppapi_example_font.html'],
50 ['examples gles2', 'ppapi_example_gles2.html'], 65 ['examples gles2', 'ppapi_example_gles2.html'],
51 ['examples post_message', 'ppapi_example_post_message.html'], 66 ['examples post_message', 'ppapi_example_post_message.html'],
52 ['list/run all PPAPI tests', 'test_case.html?mode=nacl'], 67 ['list/run all PPAPI tests', 'test_case.html?mode=nacl'],
53 ['test Graphics2D', 'test_case.html?testcase=Graphics2D&mode=nacl'], 68 ['test Graphics2D', 'test_case.html?testcase=Graphics2D&mode=nacl'],
54 ['test ImageData', 'test_case.html?testcase=ImageData&mode=nacl'], 69 ['test ImageData', 'test_case.html?testcase=ImageData&mode=nacl'],
55 ['test Instance', 'test_case.html?testcase=Instance&mode=nacl'], 70 ['test Instance', 'test_case.html?testcase=Instance&mode=nacl'],
56 ['test PaintAggregator', 71 ['test PaintAggregator',
57 'test_case.html?testcase=PaintAggregator&mode=nacl'], 72 'test_case.html?testcase=PaintAggregator&mode=nacl'],
73 ['test Scrollbar', 'test_case.html?testcase=Scrollbar&mode=nacl'],
58 ] 74 ]
59 ] 75 ]
60 ]; 76 ];
61 77
62 var buildTable = function() { 78 var buildTable = function() {
63 var num_test_classes = test_table_descriptor.length; 79 var num_test_classes = test_table_descriptor.length;
64 var i; 80 var i;
65 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>'; 81 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>';
66 // Build the table heading row. 82 // Build the table heading row.
67 for (i = 0; i < num_test_classes; ++i) { 83 for (i = 0; i < num_test_classes; ++i) {
(...skipping 28 matching lines...) Expand all
96 table_div_element.innerHTML = table; 112 table_div_element.innerHTML = table;
97 } 113 }
98 //]]> 114 //]]>
99 </script> 115 </script>
100 </head> 116 </head>
101 <body onload="buildTable()"> 117 <body onload="buildTable()">
102 <h1> Native Client Browser Examples and Tests </h1> 118 <h1> Native Client Browser Examples and Tests </h1>
103 <div id="table_div"> </div> 119 <div id="table_div"> </div>
104 </body> 120 </body>
105 </html> 121 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698