Bug 800864 - Add some more tests. r=bz

This commit is contained in:
Bobby Holley 2012-11-05 17:15:53 -08:00
parent 25e8415172
commit 35a5c3a7c6
2 changed files with 51 additions and 0 deletions

View File

@ -84,6 +84,7 @@ MOCHITEST_FILES = chrome_wrappers_helper.html \
file_bug795275.html \
file_bug795275.xml \
file_bug799348.html \
test_bug800864.html \
$(NULL)
ifneq ($(OS_TARGET),Android)

View File

@ -0,0 +1,50 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=800864
-->
<head>
<title>Test for Bug 800864</title>
<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=800864">Mozilla Bug 800864</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
function checkThrows(f) {
try {
f();
ok(false, "Didn't throw a security exception like we should");
} catch(e) {
ok(/denied/.exec(e), "Should throw |denied| exception. Got: " + e);
}
}
function go() {
ifr = document.getElementById('ifr');
win = ifr.contentWindow;
loc = win.location;
ifr.onload = check;
win.location = 'http://test1.example.com';
}
function check() {
checkThrows(function() { loc.toString(); });
checkThrows(function() { loc.valueOf(); });
checkThrows(function() { loc + ''; });
SimpleTest.finish();
}
</script>
</pre>
</body>
<iframe id="ifr" onload="go()" src="file_empty.html"></iframe>
</html>