Index: ppapi/native_client/tests/ppapi_test_example/ppapi_test_example.html |
=================================================================== |
--- ppapi/native_client/tests/ppapi_test_example/ppapi_test_example.html (revision 0) |
+++ ppapi/native_client/tests/ppapi_test_example/ppapi_test_example.html (revision 0) |
@@ -0,0 +1,31 @@ |
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
+<html> |
+ <!-- Copyright (c) 2011 Google Inc. All rights reserved. --> |
+ <head> |
+ <meta http-equiv="Pragma" content="no-cache" /> |
+ <meta http-equiv="Expires" content="-1" /> |
+ <script type="text/javascript" src="nacltest.js"></script> |
+ <!-- TODO(tester): change JavaScript file name --> |
+ <script type="text/javascript" src="ppapi_test_example.js"></script> |
+ <title>PPAPI Test Example</title> <!-- TODO(tester): change title --> |
+ </head> |
+ <body> |
+ <h1>PPAPI Test Example</h1> <!-- TODO(tester): change heading --> |
+ |
+ <!-- TODO(tester): change manifest file name --> |
+ <embed type="application/x-nacl" id="test_nexe" |
+ name="nacl_module" |
+ src="ppapi_test_example.nmf" |
+ width="0" height="0" /> |
+ |
+ <script type="text/javascript"> |
+ //<![CDATA[ |
+ var tester = new Tester(); |
+ setupTests(tester, $('test_nexe')); |
+ tester.waitFor($('test_nexe')); |
+ tester.run(); |
+ //]]> |
+ </script> |
+ </body> |
+</html> |