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

Side by Side Diff: LayoutTests/fast/workers/shared-worker-console-log.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 <script> 5 <script>
6 if (window.testRunner) { 6 if (window.testRunner) {
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 } 9 }
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 self.addEventListener("connect", function (e) { 43 self.addEventListener("connect", function (e) {
44 var port = e.ports[0]; 44 var port = e.ports[0];
45 port.postMessage({ done: true }); 45 port.postMessage({ done: true });
46 }); 46 });
47 </script> 47 </script>
48 <script> 48 <script>
49 window.jsTestIsAsync = true; 49 window.jsTestIsAsync = true;
50 description("This tests that 'console.log' and friends function correctl y from workers."); 50 description("This tests that 'console.log' and friends function correctl y from workers.");
51 buildInlineSharedWorker(); 51 buildInlineSharedWorker();
52 </script> 52 </script>
53 <script src="../js/resources/js-test-post.js"></script>
54 </body> 53 </body>
55 </html> 54 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/workers/constructor-proto.html ('k') | LayoutTests/fast/workers/shared-worker-messageevent-source.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698