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

Side by Side Diff: ppapi/native_client/tests/ppapi_browser/ppp_instance/ppapi_ppp_instance.html

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
(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 <script type="text/javascript" src="ppapi_ppp_instance.js"></script>
10 <title>PPAPI PPP_Instance Test</title>
11 </head>
12 <body>
13 <h1>PPAPI PPP_Instance Test</h1>
14
15 <div id="test_nexe_parent">
16 <embed type="application/x-nacl" id="test_nexe"
17 name="nacl_module"
18 src="ppapi_ppp_instance.nmf"
19 style="background-color:#AAAAAA"
20 width="15" height="20" />
21 <!-- NOTE: PPP_Instance::DidChangeView verifies these exact dimenstions -->
22 </div>
23 <br>
24 <script type="text/javascript">
25 //<![CDATA[
26 var tester = new Tester();
27 setupTests(tester, $('test_nexe'));
28 tester.waitFor($('test_nexe'));
29 tester.run();
30 //]]>
31 </script>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698