Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding test
  • Loading branch information
bzbarsky committed Oct 12, 2007
1 parent f22ec2a commit db5f5d9
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions docshell/test/Makefile.in
Expand Up @@ -50,6 +50,7 @@ include $(topsrcdir)/config/rules.mk

_TEST_FILES = \
test_bug344861.html \
test_bug384014.html \
test_bug387979.html \
$(NULL)

Expand Down
42 changes: 42 additions & 0 deletions docshell/test/test_bug384014.html
@@ -0,0 +1,42 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=384014
-->
<head>
<title>Test for Bug 384014</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/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=384014">Mozilla Bug 384014</a>
<p id="display">
<iframe id="f" src="javascript:try { window.x = 'PASS'; s = 'PASS' } catch(e) { s = 'FAIL' } s;"></iframe>
</p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 384014 **/
SimpleTest.waitForExplicitFinish();

function runTest() {
$("f").onload = function () {
is($("f").contentDocument.documentElement.textContent, "PASS",
"We fail");
SimpleTest.finish();
}

$("f").contentWindow.location.reload();
}

addLoadEvent(runTest);

</script>
</pre>
</body>
</html>

0 comments on commit db5f5d9

Please sign in to comment.