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

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

Issue 10827456: Remove PPB_Scrollbar_Dev and PPB_Widget_Dev from native client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also remove PPB_PDF and associated tests Created 8 years, 4 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[
(...skipping 21 matching lines...) Expand all
32 ['PPAPI Proxy Tests', 32 ['PPAPI Proxy Tests',
33 [ 33 [
34 ['PPB_Core', 'ppapi_ppb_core.html'], 34 ['PPB_Core', 'ppapi_ppb_core.html'],
35 ['PPB_Graphics2D', 'ppapi_ppb_graphics2d.html'], 35 ['PPB_Graphics2D', 'ppapi_ppb_graphics2d.html'],
36 ['PPB_Graphics3D', 'ppapi_ppb_graphics3d.html'], 36 ['PPB_Graphics3D', 'ppapi_ppb_graphics3d.html'],
37 ['PPB_FileSystem', 'ppapi_ppb_file_system.html'], 37 ['PPB_FileSystem', 'ppapi_ppb_file_system.html'],
38 ['PPB_ImageData', 'ppapi_ppb_image_data.html'], 38 ['PPB_ImageData', 'ppapi_ppb_image_data.html'],
39 ['PPB_Instance', 'ppapi_ppb_instance.html'], 39 ['PPB_Instance', 'ppapi_ppb_instance.html'],
40 ['PPB_Memory', 'ppapi_ppb_memory.html'], 40 ['PPB_Memory', 'ppapi_ppb_memory.html'],
41 ['PPB_Messaging/PPP_Messaging', 'ppapi_messaging.html'], 41 ['PPB_Messaging/PPP_Messaging', 'ppapi_messaging.html'],
42 ['PPB_Scrollbar', 'ppapi_ppb_scrollbar.html'],
43 ['PPB_URLRequestInfo', 'ppapi_ppb_url_request_info.html'], 42 ['PPB_URLRequestInfo', 'ppapi_ppb_url_request_info.html'],
44 ['PPP_Instance', 'ppapi_ppp_instance.html'] 43 ['PPP_Instance', 'ppapi_ppp_instance.html']
45 ] 44 ]
46 ], 45 ],
47 ['chrome/ppapi/{examples|tests}', 46 ['chrome/ppapi/{examples|tests}',
48 [ 47 [
49 ['examples 2d', 'ppapi_example_2d.html'], 48 ['examples 2d', 'ppapi_example_2d.html'],
50 ['examples font', 'ppapi_example_font.html'], 49 ['examples font', 'ppapi_example_font.html'],
51 ['examples gles2', 'ppapi_example_gles2.html'], 50 ['examples gles2', 'ppapi_example_gles2.html'],
52 ['examples post_message', 'ppapi_example_post_message.html'], 51 ['examples post_message', 'ppapi_example_post_message.html'],
53 ['list/run all PPAPI tests', 'test_case.html?mode=nacl'], 52 ['list/run all PPAPI tests', 'test_case.html?mode=nacl'],
54 ['test Graphics2D', 'test_case.html?testcase=Graphics2D&mode=nacl'], 53 ['test Graphics2D', 'test_case.html?testcase=Graphics2D&mode=nacl'],
55 ['test ImageData', 'test_case.html?testcase=ImageData&mode=nacl'], 54 ['test ImageData', 'test_case.html?testcase=ImageData&mode=nacl'],
56 ['test Instance', 'test_case.html?testcase=Instance&mode=nacl'], 55 ['test Instance', 'test_case.html?testcase=Instance&mode=nacl'],
57 ['test PaintAggregator', 56 ['test PaintAggregator',
58 'test_case.html?testcase=PaintAggregator&mode=nacl'], 57 'test_case.html?testcase=PaintAggregator&mode=nacl'],
59 ['test Scrollbar', 'test_case.html?testcase=Scrollbar&mode=nacl'],
60 ] 58 ]
61 ] 59 ]
62 ]; 60 ];
63 61
64 var buildTable = function() { 62 var buildTable = function() {
65 var num_test_classes = test_table_descriptor.length; 63 var num_test_classes = test_table_descriptor.length;
66 var i; 64 var i;
67 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>'; 65 var table = '<table border="10" cellpadding="5%" summary="Tests"><tr>';
68 // Build the table heading row. 66 // Build the table heading row.
69 for (i = 0; i < num_test_classes; ++i) { 67 for (i = 0; i < num_test_classes; ++i) {
(...skipping 28 matching lines...) Expand all
98 table_div_element.innerHTML = table; 96 table_div_element.innerHTML = table;
99 } 97 }
100 //]]> 98 //]]>
101 </script> 99 </script>
102 </head> 100 </head>
103 <body onload="buildTable()"> 101 <body onload="buildTable()">
104 <h1> Native Client Browser Examples and Tests </h1> 102 <h1> Native Client Browser Examples and Tests </h1>
105 <div id="table_div"> </div> 103 <div id="table_div"> </div>
106 </body> 104 </body>
107 </html> 105 </html>
OLDNEW
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/plugin.cc ('k') | ppapi/native_client/tests/ppapi_browser/ppb_pdf/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698