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

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

Issue 19962008: Rewrite the 'window.onerror' tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: *facepalm* 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-06.html
diff --git a/LayoutTests/fast/events/window-onerror-06.html b/LayoutTests/fast/events/window-onerror-06.html
new file mode 100644
index 0000000000000000000000000000000000000000..c502bb2c1764e89d81c97b46773c23ac20c46e8a
--- /dev/null
+++ b/LayoutTests/fast/events/window-onerror-06.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script>
+ window.isOnErrorTest = true;
+ </script>
+ <script src="../js/resources/js-test-pre.js"></script>
+ <script src="resources/onerror-test.js"></script>
+</head>
+<body>
+ <script>
+ description("This test should trigger 'window.onerror' only once, without diving into horrible recursion.");
+
+ function callback(errorNumber) {
+ if (errorNumber > 1)
+ testFailed("window.onerror should only be called once in this test.");
+ throwException("Nested exception.");
+ }
+
+ dumpOnErrorArgumentValuesAndReturn(true, callback);
+
+ throwException("Original exception.");
+ </script>
+ <script src="../js/resources/js-test-post.js"></script>
+</body>
+</html>
« no previous file with comments | « LayoutTests/fast/events/window-onerror-05-expected.txt ('k') | LayoutTests/fast/events/window-onerror-06-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698