зеркало из https://github.com/mozilla/gecko-dev.git
37 строки
1.0 KiB
HTML
37 строки
1.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=985827
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 985827</title>
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 985827 **/
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
addEventListener('load', function() {
|
|
var iframe = document.createElement("iframe");
|
|
var dir = "chrome://mochitests/content/chrome/dom/base/test/";
|
|
iframe.src = dir + "file_navigator_resolve_identity.html";
|
|
document.body.appendChild(iframe);
|
|
iframe.onload = function() { SimpleTest.finish(); };
|
|
});
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=985827">Mozilla Bug 985827</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
</pre>
|
|
</body>
|
|
</html>
|