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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/tests/earth/earth_c.html
===================================================================
--- ppapi/native_client/tests/earth/earth_c.html (revision 0)
+++ ppapi/native_client/tests/earth/earth_c.html (revision 0)
@@ -0,0 +1,57 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+ <!-- Copyright 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>
+ <script type="application/x-javascript">
+ //<![CDATA[
+function setupTests(tester, plugin) {
+ tester.addAsyncTest('smoke', function(status) {
+ status.setTimeout(function() {
+ // '' means there was no error.
+ status.assertEqual(plugin.lastError, '');
+ status.pass(); // Async tests require an explicit pass.
+ }, 2000);
+ });
+}
+ //]]>
+ </script>
+ <title>Native Client Rotating Globe</title>
+</head>
+
+<body>
+
+<h1>Native Client Rotating Globe - C</h1>
+ <p>
+ Image Credit:
+ NASA Goddard Space Flight Center Image by Reto Stöckli (land surface,
+ shallow water, clouds). Enhancements by Robert Simmon (ocean color,
+ compositing, 3D globes, animation).
+ Data and technical support: MODIS Land Group; MODIS Science Data,
+ Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data:
+ USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing
+ Flagstaff Field Center (Antarctica); Defense Meteorological
+ Satellite Program (city lights).
+ </p>
+
+<embed name="nacl_module_c"
+ id="earth_c_nexe"
+ width=512 height=512
+ src="earth_c.nmf"
+ type="application/x-nacl"
+ usesysconf="true">
+
+ <script type="text/javascript">
+ //<![CDATA[
+ var tester = new Tester();
+ setupTests(tester, $('earth_c_nexe'));
+ tester.waitFor($('earth_c_nexe'));
+ tester.run();
+ //]]>
+ </script>
+
+</body>
+</html>
Property changes on: ppapi/native_client/tests/earth/earth_c.html
___________________________________________________________________
Added: svn:eol-style
+ LF
« 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