| OLD | NEW |
| 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[ |
| 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', | 18 [ 'SRPC Nexe Tests', |
| 19 [ [ 'hello world', 'srpc_hw_ppapi.html' ], | 19 [ [ 'hello world', 'srpc_hw.html' ], |
| 20 [ 'parameter passing', 'srpc_basic_ppapi.html' ], | 20 [ 'parameter passing', 'srpc_basic.html' ], |
| 21 [ 'plugin properties', 'srpc_plugin_ppapi.html' ], | 21 [ 'plugin properties', 'srpc_plugin_ppapi.html' ], |
| 22 [ 'socket address API', 'srpc_sockaddr_ppapi.html' ], | 22 [ 'socket address API', 'srpc_sockaddr.html' ], |
| 23 [ 'shared memory API', 'srpc_shm_ppapi.html' ], | 23 [ 'shared memory API', 'srpc_shm.html' ], |
| 24 [ 'resource descriptor transfer', 'srpc_nrd_xfer_ppapi.html' ], | 24 [ 'resource descriptor transfer', 'srpc_nrd_xfer.html' ], |
| 25 [ 'performance', 'srpc_perf_ppapi.html' ], | 25 [ 'performance', 'srpc_perf.html' ], |
| 26 [ 'loading a nexe from a file descriptor', 'srpc_hw_fd.html' ], | 26 [ 'loading a nexe from a file descriptor', 'srpc_hw_fd.html' ], |
| 27 [ 'url content as NaCl resource descriptor', | 27 [ 'url content as NaCl resource descriptor', |
| 28 'srpc_url_as_nacl_desc_ppapi.html' ], | 28 'srpc_url_as_nacl_desc.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 [ 'audio', 'ppapi_example_audio.html' ], | 35 [ 'audio', 'ppapi_example_audio.html' ], |
| 36 [ 'url loading', 'ppapi_geturl.html' ], | 36 [ 'url loading', 'ppapi_geturl.html' ], |
| 37 [ 'core', 'ppapi_core.html' ], | 37 [ 'core', 'ppapi_core.html' ], |
| 38 ] | 38 ] |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 table_div_element.innerHTML = table; | 76 table_div_element.innerHTML = table; |
| 77 } | 77 } |
| 78 //]]> | 78 //]]> |
| 79 </script> | 79 </script> |
| 80 </head> | 80 </head> |
| 81 <body onload="buildTable()"> | 81 <body onload="buildTable()"> |
| 82 <h1> PPAPI Native Client Chrome Browser Tests</h1> | 82 <h1> PPAPI Native Client Chrome Browser Tests</h1> |
| 83 <div id="table_div"> </div> | 83 <div id="table_div"> </div> |
| 84 </body> | 84 </body> |
| 85 </html> | 85 </html> |
| OLD | NEW |