2008-11-10 13:09:30 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=461735
|
|
|
|
-->
|
|
|
|
<head>
|
|
|
|
<title>Test for Bug 461735</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
2008-11-10 13:09:30 -08:00
|
|
|
<script type="application/javascript" 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">
|
2010-06-08 14:16:26 -07:00
|
|
|
var errorFired = false;
|
2008-11-10 13:09:30 -08:00
|
|
|
window.onerror = function(message, uri, line) {
|
|
|
|
is(message, "Script error.", "Should have empty error message");
|
2010-06-08 12:58:26 -07:00
|
|
|
is(uri, "", "Should have empty error location URI");
|
2008-11-10 13:09:30 -08:00
|
|
|
is(line, 0, "Shouldn't have a line here");
|
2010-06-08 14:16:26 -07:00
|
|
|
errorFired = true;
|
2008-11-10 13:09:30 -08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script src="bug461735-redirect1.sjs"></script>
|
2010-06-08 14:16:26 -07:00
|
|
|
<script>
|
|
|
|
is(errorFired, true, "Should have error in redirected different origin script");
|
|
|
|
errorFired = false;
|
|
|
|
</script>
|
2008-11-10 13:09:30 -08:00
|
|
|
<script type="application/javascript">
|
|
|
|
window.onerror = function(message, uri, line) {
|
|
|
|
is(message, "c is not defined", "Should have correct error message");
|
2010-03-12 13:53:36 -08:00
|
|
|
is(uri, "http://mochi.test:8888/tests/content/base/test/bug461735-post-redirect.js", "Unexpected error location URI");
|
2008-11-10 13:09:30 -08:00
|
|
|
is(line, 3, "Should have a line here");
|
2010-06-08 14:16:26 -07:00
|
|
|
errorFired = true;
|
2008-11-10 13:09:30 -08:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script src="bug461735-redirect2.sjs"></script>
|
2010-06-08 14:16:26 -07:00
|
|
|
<script>
|
|
|
|
is(errorFired, true, "Should have error in same origin script");
|
|
|
|
</script>
|
2008-11-10 13:09:30 -08:00
|
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|