Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<title>Test for Bug 461735</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=461735">Mozilla Bug 461735</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
var errorFired = false;
window.onerror = function(message, uri, line) {
is(message, "Script error.", "Should have empty error message");
is(uri,
"Should have pre-redirect error location URI");
is(line, 0, "Shouldn't have a line here");
errorFired = true;
}
</script>
<script src="bug461735-redirect1.sjs"></script>
<script>
is(errorFired, true, "Should have error in redirected different origin script");
errorFired = false;
</script>
<script type="application/javascript">
window.onerror = function(message, uri, line) {
is(message, "ReferenceError: c is not defined", "Should have correct error message");
is(uri,
"Unexpected error location URI");
is(line, 3, "Should have a line here");
errorFired = true;
}
</script>
<script src="bug461735-redirect2.sjs"></script>
<script>
is(errorFired, true, "Should have error in same origin script");
</script>
</pre>
</body>
</html>