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

Unified Diff: third_party/WebKit/LayoutTests/fast/workers/worker-onerror-04.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-04.html
diff --git a/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-04.html b/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-04.html
index 8e8361b67dbd4bbdb897fd70f544a1cd40157c08..369c7db4060fe6bc5c579fc7b80fa5e4d73d2d2c 100644
--- a/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-04.html
+++ b/third_party/WebKit/LayoutTests/fast/workers/worker-onerror-04.html
@@ -18,7 +18,7 @@
foo.bar = 0;
</script>
<script>
- description("This tests that unhandled exceptions in a worker's onerror handler trigger 'worker.onerror'.");
+ description("This tests that unhandled exceptions in a worker's onerror handler don't trigger 'worker.onerror'.");
checkErrorEventInHandler([
// foo.bar = 0 triggers an error that isn't handled.
@@ -28,13 +28,13 @@
lineno: 7,
colno: 9,
},
- // the error handler triggers an error
{
- message: "Uncaught ReferenceError: bar is not defined",
+ message: "Uncaught ReferenceError: foo is not defined",
filename: "[blob: URL]",
- lineno: 3,
- colno: 13,
+ lineno: 7,
+ colno: 9,
}]);
+
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698