| Index: LayoutTests/fast/events/window-onerror13.html
|
| diff --git a/LayoutTests/fast/events/window-onerror13.html b/LayoutTests/fast/events/window-onerror13.html
|
| deleted file mode 100644
|
| index 655d36179497e698da99eb5046c1011a0887117a..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/events/window-onerror13.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="resources/window-onerror.js">
|
| -</script>
|
| -</head>
|
| -<body>
|
| -<p>Test that error is treated as not handled when window.onerror return
|
| -value is not 'true'. <a href="https://bugs.webkit.org/show_bug.cgi?id=67119">Bug 67119</a>.</p>
|
| -<div id="console"></div>
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| -function log(msg) {
|
| - document.getElementById("console").innerHTML += msg + "<br>";
|
| -}
|
| -
|
| -window.onerror = function(msg, url, line, column)
|
| -{
|
| - log("Uncaught error should be printed in console when window.onerror returns not true.");
|
| - log("DONE.");
|
| -}
|
| -
|
| -throw "An Error";
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|