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

Unified Diff: LayoutTests/fast/events/window-onerror-10.html

Issue 19962008: Rewrite the 'window.onerror' tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests. Created 7 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: LayoutTests/fast/events/window-onerror-10.html
diff --git a/LayoutTests/fast/events/window-onerror-10.html b/LayoutTests/fast/events/window-onerror-10.html
new file mode 100644
index 0000000000000000000000000000000000000000..279715fcba7058d039821bf306576855ff2305f2
--- /dev/null
+++ b/LayoutTests/fast/events/window-onerror-10.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script src="resources/onerror-test.js"></script>
+ <script>
+ if (window.testRunner)
+ testRunner.waitUntilDone();
+
+ var handledErrors = 0;
+ function callback() {
+ handledErrors++;
+ if (handledErrors === 3 && window.testRunner)
+ testRunner.notifyDone();
+ }
+
+ DumpOnErrorArgumentValuesAndReturn(true, callback);
+ </script>
+</head>
+<body onload="throwException('exception in onload');">
+ <p>This test should trigger 'window.onerror' multiple times, and successfully handle the errors.</p>
+ <script>
+ setTimeout(function () { throwException('exception in setTimeout'); }, 0);
+ throwException('Inline exception.');
+ </script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698