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

Side by Side Diff: ppapi/native_client/tests/earth/earth_c.html

Issue 7920012: Add missing NaCl PPAPI test components to Chrome repo. (Closed) Base URL: svn://chrome-svn/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
« no previous file with comments | « ppapi/native_client/tests/earth/earth.cc ('k') | ppapi/native_client/tests/earth/earth_c.nmf » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
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 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="application/x-javascript">
10 //<![CDATA[
11 function setupTests(tester, plugin) {
12 tester.addAsyncTest('smoke', function(status) {
13 status.setTimeout(function() {
14 // '' means there was no error.
15 status.assertEqual(plugin.lastError, '');
16 status.pass(); // Async tests require an explicit pass.
17 }, 2000);
18 });
19 }
20 //]]>
21 </script>
22 <title>Native Client Rotating Globe</title>
23 </head>
24
25 <body>
26
27 <h1>Native Client Rotating Globe - C</h1>
28 <p>
29 Image Credit:
30 NASA Goddard Space Flight Center Image by Reto Stöckli (land surface,
31 shallow water, clouds). Enhancements by Robert Simmon (ocean color,
32 compositing, 3D globes, animation).
33 Data and technical support: MODIS Land Group; MODIS Science Data,
34 Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data:
35 USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing
36 Flagstaff Field Center (Antarctica); Defense Meteorological
37 Satellite Program (city lights).
38 </p>
39
40 <embed name="nacl_module_c"
41 id="earth_c_nexe"
42 width=512 height=512
43 src="earth_c.nmf"
44 type="application/x-nacl"
45 usesysconf="true">
46
47 <script type="text/javascript">
48 //<![CDATA[
49 var tester = new Tester();
50 setupTests(tester, $('earth_c_nexe'));
51 tester.waitFor($('earth_c_nexe'));
52 tester.run();
53 //]]>
54 </script>
55
56 </body>
57 </html>
OLDNEW
« no previous file with comments | « ppapi/native_client/tests/earth/earth.cc ('k') | ppapi/native_client/tests/earth/earth_c.nmf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698