Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
-->
<window title="Mozilla Bug 853571"
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 853571</a>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 853571 **/
SimpleTest.waitForExplicitFinish();
function* mainTest() {
var iwin = $('ifr').contentWindow;
// Test with a simple sandbox with no prototype.
checkSource(iwin, new Cu.Sandbox(iwin), null, "should get null source with no sandboxPrototype");
yield;
// Test with a sandboxPrototype.
checkSource(iwin, new Cu.Sandbox(iwin, { sandboxPrototype: iwin }), iwin, "should be able to impersonate the prototype");
yield;
SimpleTest.finish();
yield; // Prevent StopIteration from being thrown.
}
var gen;
function runTest() {
gen = mainTest();
gen.next();
}
function checkSource(target, sb, expectedSource, message) {
target.addEventListener("message", function listener(event) {
is(event.source, expectedSource, message);
let {done} = gen.next();
if (done) {
// We're done.
}
},
{ once: true});
sb.target = target;
Cu.evalInSandbox("target.postMessage('foo', '*');", sb);
}
]]>
</script>
<iframe id="ifr" type="content" onload="runTest()" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_empty.html" />
</window>