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

Side by Side Diff: tests/many/many3.html

Issue 1092005: Issue 1092005 (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: Created 10 years, 9 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Stress Test Demo</title> 4 <title>Stress Test Demo</title>
5 <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 5 <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
6 <META HTTP-EQUIV="Expires" CONTENT="-1"> 6 <META HTTP-EQUIV="Expires" CONTENT="-1">
7 </head> 7 </head>
8 <body onload="nacllib.waitForModulesAndRunTests();" 8 <body onload="nacllib.waitForModulesAndRunTests();"
9 onunload="nacllib.cleanUp();" > 9 onunload="nacllib.cleanUp();" >
10 10
11 <h1>Three Native Client Demos, One Page</h1> 11 <h1>Three Native Client Demos, One Page</h1>
12 <p> 12 <p>
13 Life, Voronoi, and Earth as three Native Client processes on one HTML page. 13 Life, Voronoi, and Earth as three Native Client processes on one HTML page.
14 </p> 14 </p>
15 15
16 <embed name="nacl_module" src="life.nexe" type="application/x-nacl-srpc" width= 256 height=256 /> 16 <embed name="nacl_module" nexe="life" type="application/x-nacl-srpc" width=256 height=256>
17 <embed name="nacl_module" src="voronoi.nexe" type="application/x-nacl-srpc" wid th=256 height=256 /> 17 <noembed>
18 <embed name="nacl_module" src="earth.nexe" type="application/x-nacl-srpc" width =256 height=256 /> 18 Your browser does not appear to support Native Client.
19 Visit http://code.google.com/p/nativeclient/ to get started.
20 <noembed/>
21 </embed>
22 <embed name="nacl_module" nexe="voronoi" type="application/x-nacl-srpc" width=2 56 height=256 />
23 <embed name="nacl_module" nexe="earth" type="application/x-nacl-srpc" width=256 height=256 />
19 24
20 <br> 25 <br>
21 26
22 27
23 <div id=status></div> 28 <div id=status></div>
24 29
25 <script type="text/javascript" src="nacl_js_lib.js"></script> 30 <script type="text/javascript" src="nacl_js_lib.js"></script>
26 <script type="text/javascript"> 31 <script type="text/javascript">
27 //<![CDATA[ 32 //<![CDATA[
28 var nacllib = new NaclLib(document.getElementsByName("nacl_module"), 33 var nacllib = new NaclLib(document.getElementsByName("nacl_module"),
29 document.getElementById("status"), 34 document.getElementById("status"),
30 50); 35 50);
31 36
32 nacllib.test = function() { return ""; }; 37 nacllib.test = function() { return ""; };
33 //]]> 38 //]]>
34 </script> 39 </script>
35 </body> 40 </body>
36 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698