2014-03-21 07:19:43 +04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
|
|
|
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
|
|
|
|
<!--
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=985827
|
|
|
|
-->
|
|
|
|
<window title="Mozilla Bug 985827"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
|
|
|
|
|
|
|
|
<!-- test results are displayed in the html:body -->
|
|
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=985827"
|
|
|
|
target="_blank">Mozilla Bug 985827</a>
|
2016-03-12 21:45:54 +03:00
|
|
|
<iframe id="t"></iframe>
|
2014-03-21 07:19:43 +04:00
|
|
|
</body>
|
|
|
|
|
|
|
|
<!-- test code goes here -->
|
|
|
|
<script type="application/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
/** Test for Bug 985827 **/
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2016-03-12 21:45:54 +03:00
|
|
|
|
2018-01-30 08:17:48 +03:00
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
2016-03-12 21:45:54 +03:00
|
|
|
|
2014-03-21 07:19:43 +04:00
|
|
|
addLoadEvent(function() {
|
2016-03-12 21:45:54 +03:00
|
|
|
var iframe = document.getElementById("t");
|
|
|
|
|
|
|
|
var dir = "chrome://mochitests/content/chrome/dom/base/test/";
|
|
|
|
iframe.src = dir + "file_navigator_resolve_identity_xrays.xul";
|
|
|
|
iframe.onload = function() { finish(); };
|
2014-03-21 07:19:43 +04:00
|
|
|
|
2016-03-12 21:45:54 +03:00
|
|
|
function finish() {
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
2014-03-21 07:19:43 +04:00
|
|
|
});
|
2016-03-12 21:45:54 +03:00
|
|
|
|
2014-03-21 07:19:43 +04:00
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
</window>
|