| 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 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> |
| OLD | NEW |