gecko-dev/docshell/test/test_bug660404.html
Yoshi Huang 71b8c7686e Bug 1377492 - fix mochitest-1 failure in docshell when data: URI is a unique origin. r=smaug
When we turn on the pref security.data_uri.unique_opaque_origin to make
data URI is unique origin, the following tests will fail because now
data document is treated as cross origin, so we replace data URIs with
seperate files, hence it will still in the same origin.
2017-07-12 10:35:54 +08:00

49 lines
1.2 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=660404
-->
<head>
<title>Test for Bug 660404</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=660404">Mozilla Bug 660404</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 660404 **/
SimpleTest.waitForExplicitFinish();
var w;
function continueTest() {
// Do this async so the load event can finish firing
SimpleTest.executeSoon(function() {
w.onpagehide = function(ev) {
is(ev.persisted, true, "Should be bfcached when navigating to multipart");
}
w.location.href = "file_bug660404";
});
}
function finishTest() {
is(w.document.documentElement.textContent, "opener.finishTest();");
is(w.document.documentElement.innerHTML, "<head><script>opener.finishTest();</"+"script></head>");
w.close();
SimpleTest.finish();
}
// Have to open a new window, since there's no bfcache in subframes
w = window.open("file_bug660404-1.html");
</script>
</pre>
</body>
</html>