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

Unified Diff: LayoutTests/fast/events/resources/onerror-test.js

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
« no previous file with comments | « no previous file | LayoutTests/fast/events/resources/window-onerror.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/resources/onerror-test.js
diff --git a/LayoutTests/fast/events/resources/onerror-test.js b/LayoutTests/fast/events/resources/onerror-test.js
new file mode 100644
index 0000000000000000000000000000000000000000..1016aa201081576947532187954f43b99b8fbb74
--- /dev/null
+++ b/LayoutTests/fast/events/resources/onerror-test.js
@@ -0,0 +1,54 @@
+function stripURL(url) {
+ return url ? url.match( /[^\/]+\/?$/ )[0] : url;
+}
+
+function throwException(message) {
+ throw new Error(message ? message : "An exception");
+}
+
+var errorsSeen = 0;
+function dumpOnErrorArgumentValuesAndReturn(returnValue, callback) {
+ window.onerror = function (message, url, line, column) {
+ debug("window.onerror: \"" + message + "\" at " + stripURL(url) + " (Line: " + line + ", Column: " + column + ")");
+
+ if (callback)
+ callback(++errorsSeen);
+ if (returnValue)
+ debug("Returning 'true': the error should not be reported in the console as an unhandled exception.");
+ else
+ debug("Returning 'false': the error should be reported in the console as an unhandled exception.");
+ return returnValue;
+ };
+}
+
+function dumpErrorEventAndAllowDefault(callback) {
+ window.addEventListener('error', function (e) {
+ dumpErrorEvent(e)
+ debug("Not calling e.preventDefault(): the error should be reported in the console as an unhandled exception.");
+ if (callback)
+ callback(++errorsSeen);
+ });
+}
+
+function dumpErrorEventAndPreventDefault(callback) {
+ window.addEventListener('error', function (e) {
+ dumpErrorEvent(e);
+ debug("Calling e.preventDefault(): the error should not be reported in the console as an unhandled exception.");
+ e.preventDefault();
+ if (callback)
+ callback(++errorsSeen);
+ });
+}
+
+var eventPassedToTheErrorListener = null;
+var eventCurrentTarget = null;
+function dumpErrorEvent(e) {
+ debug("Handling '" + e.type + "' event (phase " + e.eventPhase + "): \"" + e.message + "\" at " + stripURL(e.filename) + ":" + e.lineno);
+
+ eventPassedToTheErrorListener = e;
+ eventCurrentTarget = e.currentTarget;
+ shouldBe('eventPassedToTheErrorListener', 'window.event');
+ shouldBe('eventCurrentTarget', 'window');
+ eventPassedToTheErrorListener = null;
+ eventCurrentTarget = null;
+}
« no previous file with comments | « no previous file | LayoutTests/fast/events/resources/window-onerror.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698