Bug 860494 - Tests. r=bz

This commit is contained in:
Bobby Holley 2013-04-17 10:52:52 -04:00
parent b7f2135639
commit b976419c3f
4 changed files with 53 additions and 0 deletions

View File

@ -50,6 +50,7 @@ MOCHITEST_CHROME_FILES = \
test_bug812415.xul \
test_bug853283.xul \
test_bug853571.xul \
test_bug860494.xul \
test_APIExposer.xul \
test_chrometoSource.xul \
outoflinexulscript.js \

View File

@ -0,0 +1,37 @@
<?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"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=860494
-->
<window title="Mozilla Bug 860494"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<!-- test results are displayed in the html:body -->
<body xmlns="http://www.w3.org/1999/xhtml">
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=860494"
target="_blank">Mozilla Bug 860494</a>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 860494 **/
SimpleTest.waitForExplicitFinish();
function go() {
var iwin = $('ifr').contentWindow;
// NB: mochitest-chrome actually runs the test as a content docshell.
is(iwin.top, window.top, "iframe names shouldn't shadow |top| via Xray");
is(iwin.parent, window, "iframe names shouldn't shadow |parent| via Xray");
ok(!!/http/.exec(iwin.location), "iframe names shouldn't shadow |location| via Xray");
is(iwin.length, 5, "iframe names shouldn't shadow |length| via Xray");
is(iwin.window, iwin, "iframe names shouldn't shadow |window| via Xray");
SimpleTest.finish();
}
]]>
</script>
<iframe id="ifr" type="content" onload="go();" src="http://example.org/tests/js/xpconnect/tests/mochitest/file_bug860494.html" />
</window>

View File

@ -92,6 +92,7 @@ MOCHITEST_FILES = chrome_wrappers_helper.html \
test_bug803730.html \
test_bug809547.html \
test_bug809674.html \
file_bug860494.html \
file_crosscompartment_weakmap.html \
test_crosscompartment_weakmap.html \
$(NULL)

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<iframe name="top"></iframe>
<iframe name="parent"></iframe>
<iframe name="location"></iframe>
<iframe name="length"></iframe>
<iframe name="window"></iframe>
</body>
</html>