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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/console/resources/worker-with-throw.js

Issue 2151273003: [DevTools] Move browser logging from Console domain to Log domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internals-method
Patch Set: protocol improvements Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/console/resources/worker-with-throw.js
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/console/resources/worker-with-throw.js b/third_party/WebKit/LayoutTests/inspector-protocol/console/resources/worker-with-throw.js
deleted file mode 100644
index d0c8d2c17e5dc6c8e7dec96894589c4910f37a61..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/console/resources/worker-with-throw.js
+++ /dev/null
@@ -1,21 +0,0 @@
-function foo()
-{
- throw new Error();
-}
-
-function boo1()
-{
- foo();
-}
-
-function boo2()
-{
- foo();
-}
-
-onmessage = function(event) {
- if (event.data === 42)
- boo1();
- else
- boo2();
-};

Powered by Google App Engine
This is Rietveld 408576698