OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 3 <html> |
| 4 <!-- Copyright (c) 2011 Google Inc. All rights reserved. --> |
| 5 <head> |
| 6 <meta http-equiv="Pragma" content="no-cache" /> |
| 7 <meta http-equiv="Expires" content="-1" /> |
| 8 <script type="text/javascript" src="nacltest.js"></script> |
| 9 <!-- TODO(tester): change JavaScript file name --> |
| 10 <script type="text/javascript" src="ppapi_test_example.js"></script> |
| 11 <title>PPAPI Test Example</title> <!-- TODO(tester): change title --> |
| 12 </head> |
| 13 <body> |
| 14 <h1>PPAPI Test Example</h1> <!-- TODO(tester): change heading --> |
| 15 |
| 16 <!-- TODO(tester): change manifest file name --> |
| 17 <embed type="application/x-nacl" id="test_nexe" |
| 18 name="nacl_module" |
| 19 src="ppapi_test_example.nmf" |
| 20 width="0" height="0" /> |
| 21 |
| 22 <script type="text/javascript"> |
| 23 //<![CDATA[ |
| 24 var tester = new Tester(); |
| 25 setupTests(tester, $('test_nexe')); |
| 26 tester.waitFor($('test_nexe')); |
| 27 tester.run(); |
| 28 //]]> |
| 29 </script> |
| 30 </body> |
| 31 </html> |
OLD | NEW |