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

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

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js b/third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js
deleted file mode 100644
index d0c8d2c17e5dc6c8e7dec96894589c4910f37a61..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/worker/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