mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
d82a6bf3cf
--HG-- rename : dom/tests/mochitest/general/historyframes.html => docshell/test/historyframes.html rename : dom/tests/mochitest/general/test_framedhistoryframes.html => docshell/test/test_framedhistoryframes.html rename : dom/tests/mochitest/general/test_windowedhistoryframes.html => docshell/test/test_windowedhistoryframes.html
34 lines
829 B
HTML
34 lines
829 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=602256
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 602256</title>
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
<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=602256">Mozilla Bug 602256</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 602256 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function done() {
|
|
subWin.close();
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
var subWin = window.open("historyframes.html", "_blank");
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|