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

Unified Diff: third_party/WebKit/LayoutTests/fast/workers/worker-onerror-05.html

Issue 2090953006: [Blink-Workers]Set verbosity of the external exception handler. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test worker-onerror-05 as per comments 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/fast/workers/worker-onerror-05.html
diff --git a/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-05.html b/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-05.html
index be9481701abd52b4e9b0add433f6643047fde60c..b8e3a62c813eaf011bc6cd29150036bd2d661ec1 100644
--- a/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-05.html
+++ b/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-05.html
@@ -18,13 +18,13 @@
colno: colno,
error: error
});
- return false;
+ return true;
}
foo.bar = 0;
</script>
<script>
- description("This tests that exceptions trigger a worker's onerror in addition to the page-level 'worker.onerror'.");
+ description("This tests that exceptions don't trigger a worker's onerror in addition to the page-level 'worker.onerror'.");
checkPostMessage({
message: "Uncaught ReferenceError: foo is not defined",

Powered by Google App Engine
This is Rietveld 408576698