Adding test.
git-svn-id: svn://10.0.0.236/trunk@229944 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
85b795adfa
commit
84ec807bc2
@ -49,6 +49,7 @@ include $(topsrcdir)/config/rules.mk
|
||||
|
||||
_TEST_FILES = \
|
||||
test_bug344861.html \
|
||||
test_bug387979.html \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_TEST_FILES)
|
||||
|
||||
55
mozilla/docshell/test/test_bug387979.html
Normal file
55
mozilla/docshell/test/test_bug387979.html
Normal file
@ -0,0 +1,55 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=387979
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 387979</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=387979">Mozilla Bug 387979</a>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 387979 **/
|
||||
function a(s) {
|
||||
var r;
|
||||
try { r = frames[0].document.body; }
|
||||
catch (e) { r = e; }
|
||||
is(r instanceof HTMLBodyElement, true,
|
||||
"Can't get body" + s);
|
||||
}
|
||||
var p = 0;
|
||||
function b() {
|
||||
switch (++p) {
|
||||
case 1:
|
||||
frames[0].location = "about:blank";
|
||||
break;
|
||||
case 2:
|
||||
a("before reload");
|
||||
frames[0].location.reload();
|
||||
break;
|
||||
case 3:
|
||||
a("after reload");
|
||||
SimpleTest.finish();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
<p id="display">
|
||||
<iframe onload="b()"></iframe>
|
||||
<pre id="p">-</pre>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user