Bug 985135 - Test that sandboxed origin flag is honoured across redirects. r=bobowen

This commit is contained in:
Boris Zbarsky 2014-03-18 17:24:46 -04:00
parent a439969d84
commit 4c56eb1a6e
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,2 @@
<!DOCTYPE html>
<body>redirect</body>

View File

@ -0,0 +1,2 @@
HTTP 301 Moved Permanently
Location: file_iframe_sandbox_redirect_target.html

View File

@ -0,0 +1,9 @@
<!DOCTYPE html>
<head>
<script>
onmessage = function(event) {
parent.postMessage(event.data + " redirect target", "*");
}
</script>
</head>
<body>I have been redirected</body>

View File

@ -135,6 +135,9 @@ support-files =
file_iframe_sandbox_open_window_fail.html
file_iframe_sandbox_open_window_pass.html
file_iframe_sandbox_pass.js
file_iframe_sandbox_redirect.html
file_iframe_sandbox_redirect.html^headers^
file_iframe_sandbox_redirect_target.html
file_iframe_sandbox_top_navigation_fail.html
file_iframe_sandbox_top_navigation_pass.html
file_iframe_sandbox_window_form_fail.html
@ -445,6 +448,7 @@ skip-if = buildapp == 'b2g' || toolkit == 'android' || e10s # b2g(plugins not su
skip-if = buildapp == 'b2g' # b2g(multiple concurrent window.open()s fail on B2G) b2g-debug(multiple concurrent window.open()s fail on B2G) b2g-desktop(Bug 931116, b2g desktop specific, initial triage)
[test_iframe_sandbox_popups_inheritance.html]
skip-if = buildapp == 'b2g' || e10s # b2g(multiple concurrent window.open()s fail on B2G) b2g-debug(multiple concurrent window.open()s fail on B2G) b2g-desktop(Bug 931116, b2g desktop specific, initial triage)
[test_iframe_sandbox_redirect.html]
[test_iframe_sandbox_same_origin.html]
[test_iframe_sandbox_workers.html]
[test_img_attributes_reflection.html]

View File

@ -0,0 +1,45 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=985135
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 985135</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript">
/** Test for Bug 985135 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
try {
var doc = frames[0].document;
ok(false, "Should not be able to get the document");
isnot(doc.body.textContent.slice(0, -1), "I have been redirected",
"Should not happen");
SimpleTest.finish();
} catch (e) {
// Check that we got the right document
window.onmessage = function(event) {
is(event.data, "who are you? redirect target",
"Should get the message we expect");
SimpleTest.finish();
}
frames[0].postMessage("who are you?", "*");
}
});
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=985135">Mozilla Bug 985135</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe src="file_iframe_sandbox_redirect.html" sandbox="allow-scripts"></iframe>
</div>
<pre id="test">
</pre>
</body>
</html>