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

Side by Side Diff: LayoutTests/fast/workers/worker-multi-startup.html

Issue 8210003: Merge 96999 - Make isXMLMIMEType regex use TLS (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-multi-startup-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <head> 1 <head>
2 <p>Test that multipe workers can be spawned simultaneously. 2 <p>Test that multipe workers can be spawned simultaneously.
3 Should print "DONE" when done.</p> 3 Should print "DONE" when done.</p>
4 <div id=result></div> 4 <div id=result></div>
5 <script> 5 <script>
6 if (window.layoutTestController) { 6 if (window.layoutTestController) {
7 layoutTestController.dumpAsText(); 7 layoutTestController.dumpAsText();
8 layoutTestController.waitUntilDone(); 8 layoutTestController.waitUntilDone();
9 } 9 }
10 10
(...skipping 11 matching lines...) Expand all
22 log(evt.data); 22 log(evt.data);
23 if (++replies < totalWorkers) 23 if (++replies < totalWorkers)
24 return; 24 return;
25 log("DONE"); 25 log("DONE");
26 if (window.layoutTestController) 26 if (window.layoutTestController)
27 layoutTestController.notifyDone(); 27 layoutTestController.notifyDone();
28 } 28 }
29 } 29 }
30 </script> 30 </script>
31 </body> 31 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-multi-startup-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698