Bug 781476 - Test. r=me

This commit is contained in:
Bobby Holley 2012-08-16 12:25:39 -07:00
parent e9fce7a3ae
commit 1b5491626e
3 changed files with 53 additions and 0 deletions

View File

@ -65,6 +65,8 @@ MOCHITEST_FILES = bug500931_helper.html \
file_bug760131.html \
test_bug764389.html \
test_bug772288.html \
test_bug781476.html \
file_bug781476.html \
file_nodelists.html \
file_exnstack.html \
file_expandosharing.html \

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
function makeEvent() {
var evt = new Event("MouseEvents");
evt.expando = 42;
is(evt.expando, 42, "Expando properly visible in iframe");
return evt;
}
</script>
</head>
<body>
</body>
</html>

View File

@ -0,0 +1,36 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=781476
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 781476</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=781476">Mozilla Bug 781476</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe onload="go();" id="ifr" src="file_bug781476.html"></iframe>
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 781476 **/
SimpleTest.waitForExplicitFinish();
function go() {
var iwin = document.getElementById('ifr').contentWindow;
iwin.is = is;
var evt = iwin.makeEvent();
is(evt.expando, 42, "Expando properly visible in caller frame");
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>