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

Side by Side Diff: tests/npapi_bridge/npapi_test.html

Issue 2853014: The Mac Selenium tests are flaky, failing every now and then because of a... (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: Created 10 years, 6 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 | « no previous file | tests/npapi_geturl/npapi_geturl.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html> 3 <html>
4 <!-- Copyright 2008 Google Inc. All rights reserved. --> 4 <!-- Copyright 2008 Google Inc. All rights reserved. -->
5 <head> 5 <head>
6 <title>NPAPI Objects and Proxies</title> 6 <title>NPAPI Objects and Proxies</title>
7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> 7 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
8 <META HTTP-EQUIV="Expires" CONTENT="-1" /> 8 <META HTTP-EQUIV="Expires" CONTENT="-1" />
9 </head> 9 </head>
10 <body onload="nacllib.waitForModulesAndRunTests();" 10 <body onload="nacllib.waitForModulesAndRunTests();"
11 onunload="nacllib.cleanUp();" > 11 onunload="nacllib.cleanUp();" >
12 <script type="text/javascript" src="nacl_js_lib.js"></script> 12 <script type="text/javascript" src="nacl_js_lib.js"></script>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 //<![CDATA[ 14 //<![CDATA[
15 var nacllib = new NaclLib("nacl_module", "status", 100); 15 var nacllib = new NaclLib("nacl_module", "status", 500);
16 16
17 nacllib.numModulesReady = function(modules) { 17 nacllib.numModulesReady = function(modules) {
18 var count = 0; 18 var count = 0;
19 for (var i = 0; i < modules.length; i++) { 19 for (var i = 0; i < modules.length; i++) {
20 try { 20 try {
21 var foo = modules[i].fillRect(); 21 var foo = modules[i].fillRect();
22 count += 1; 22 count += 1;
23 } catch(e) { 23 } catch(e) {
24 // do nothing 24 // do nothing
25 } 25 }
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 <div id="status">NO-STATUS</div> 159 <div id="status">NO-STATUS</div>
160 <div> 160 <div>
161 <em> 161 <em>
162 Note: Display canvas3 should change color about once every second, 162 Note: Display canvas3 should change color about once every second,
163 as embed3 demonstrates NPN_PluginThreadAsyncCall. 163 as embed3 demonstrates NPN_PluginThreadAsyncCall.
164 </em> 164 </em>
165 </div> 165 </div>
166 166
167 </body> 167 </body>
168 </html> 168 </html>
OLDNEW
« no previous file with comments | « no previous file | tests/npapi_geturl/npapi_geturl.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698