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

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

Issue 1859293002: [DevTools] Move Console to v8_inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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 | third_party/WebKit/LayoutTests/fast/workers/worker-console-log-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 window.isOnErrorTest = true; 5 window.isOnErrorTest = true;
6 </script> 6 </script>
7 <script src="../../resources/js-test.js"></script> 7 <script src="../../resources/js-test.js"></script>
8 <script> 8 <script>
9 function buildInlineWorker() { 9 function buildInlineWorker() {
10 var script = document.getElementById('workerCode').innerText; 10 var script = document.getElementById('workerCode').innerText;
(...skipping 17 matching lines...) Expand all
28 console.log(console.log.toString()); 28 console.log(console.log.toString());
29 console.error("error"); 29 console.error("error");
30 console.warn("warn"); 30 console.warn("warn");
31 console.info("info"); 31 console.info("info");
32 console.debug("debug"); 32 console.debug("debug");
33 console.count("count"); 33 console.count("count");
34 console.time("time"); 34 console.time("time");
35 /* 35 /*
36 // FIXME(slightlyoff): these aren't getting logged properly from here! 36 // FIXME(slightlyoff): these aren't getting logged properly from here!
37 console.timeEnd("time"); 37 console.timeEnd("time");
38 */
38 console.assert(true); 39 console.assert(true);
39 console.assert(false); 40 console.assert(false);
40 console.markTimeline("markTimeline"); 41 console.markTimeline("markTimeline");
41 */
42 this.postMessage({ done: true }); 42 this.postMessage({ done: true });
43 </script> 43 </script>
44 <script> 44 <script>
45 window.jsTestIsAsync = true; 45 window.jsTestIsAsync = true;
46 description("This tests that 'console.log' and friends function correctl y from workers."); 46 description("This tests that 'console.log' and friends function correctl y from workers.");
47 buildInlineWorker(); 47 buildInlineWorker();
48 </script> 48 </script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/workers/worker-console-log-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698