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/window-onerror-for-isolated-world-1.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-for-isolated-world-1.html
diff --git a/LayoutTests/fast/events/window-onerror-for-isolated-world-1.html b/LayoutTests/fast/events/window-onerror-for-isolated-world-1.html
deleted file mode 100644
index af4b00507a91811dd3204632da15d5d06e0c654f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/window-onerror-for-isolated-world-1.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-</head>
-<body>
-<p>Test that window.onerror and "error" event listeners from main world are
-invoked for uncaught exceptions in scripts running in isolate worlds as
-well as for exceptions in the main world.<a href="https://bugs.webkit.org/show_bug.cgi?id=8519">Bug 8519.</a>
-</p>
-<div id="console"></div>
-<script>
-
-var expectedRecordCount = 12;
-var recordCount = 0;
-document.getElementById("console").addEventListener("DOMNodeInserted", function(e) {
- recordCount++;
- if (recordCount === expectedRecordCount && window.testRunner)
- testRunner.notifyDone();
-}, false);
-
-function log(msg) {
- var record = document.createElement("div");
- record.innerHTML = msg;
- document.getElementById("console").appendChild(record);
-}
-
-function lastUrlComponent(url) {
- return url ? url.match( /[^\/]+\/?$/ )[0] : url;
-}
-
-window.onerror = function(msg, url, line)
-{
- log("Main world window.onerror: " + msg + " at " + lastUrlComponent(url) + ":" + line);
- return true;
-}
-
-window.addEventListener("error", function(e)
-{
- var url = lastUrlComponent(e.filename);
- log("Main world error event listener: " + e.message + " at " + url + ":" + e.lineno);
- e.preventDefault();
-}, false);
-
-var exceptions = function(isolatedWorld)
-{
- window.addEventListener("load", function(e) {
- // Do the following call from load listener to make sure error in the setTimeout callback always happens after the error in this listener.
- setTimeout(function() {
- throw new Error("Error in " + isolatedWorld + " setTimeout callback.");
- }, 0);
- throw new Error("Error in " + isolatedWorld + " load handler.");
- }, false);
-
-
- throw new Error("Error in "+ isolatedWorld + " inline script.");
-}
-
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- testRunner.evaluateScriptInIsolatedWorld(1, "(" + exceptions + ")('isolated world')");
-}
-
-exceptions("main world");
-
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698