| Index: LayoutTests/http/tests/security/script-crossorigin-onerror-information.html
|
| diff --git a/LayoutTests/http/tests/security/script-crossorigin-onerror-information.html b/LayoutTests/http/tests/security/script-crossorigin-onerror-information.html
|
| deleted file mode 100644
|
| index d23c1547742f594a83dd833f3c1a694f83c65703..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/security/script-crossorigin-onerror-information.html
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<head>
|
| -</head>
|
| -<body>
|
| -<script src="../../js-test-resources/js-test-pre.js"></script>
|
| -<script>
|
| -window.jsTestIsAsync = true;
|
| -description("The test passes if window.onerror gets unsanitized information about the script error.");
|
| -
|
| -window.onerror = function(msg, url, line) {
|
| - window.msg = msg;
|
| - window.url = url;
|
| - window.line = line;
|
| - shouldBeEqualToString("msg.match(/SomeError/)[0]", "SomeError");
|
| - shouldBeEqualToString("url", "http://localhost:8000/security/resources/cors-script.php?fail=true");
|
| - shouldBe("line", "1");
|
| - finishJSTest();
|
| -}
|
| -</script>
|
| -<script crossorigin=" anonymous " src="http://localhost:8000/security/resources/cors-script.php?fail=true"></script>
|
| -<script src="../../js-test-resources/js-test-post.js"></script>
|
|
|