Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: http3 OR http2
- Manifest: dom/html/test/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
If we set domain using document.domain = "...", a page and iframe must be
treated as the same domain if they differ in port number,
e.g. test1.example.org:8000 and test2.example.org:80 are the same domain if
document.domain = "example.org".
-->
<head>
<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=1292522">Mozilla Bug 1292522</a>
<p id="display"></p>
<pre id="test">
<script class="testbody" type="text/javascript">
if (navigator.platform.startsWith("Linux")) {
SimpleTest.expectAssertions(0, 1);
}
SimpleTest.waitForExplicitFinish();
window.addEventListener("message", onMessageReceived);
var page;
function onMessageReceived(event)
{
is(event.data, "testiframe", "Must be able to access the variable," +
" because page and iframe are the " +
"same domain.");
page.close();
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>