Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?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"?>
<!--
-->
<window title="Mozilla Bug 565388"
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Bug 565388 */
SimpleTest.waitForExplicitFinish();
function test() {
var progressListener = {
add(docShell, callback) {
this.callback = callback;
this.docShell = docShell;
docShell.
QueryInterface(Ci.nsIInterfaceRequestor).
getInterface(Ci.nsIWebProgress).
addProgressListener(this, Ci.nsIWebProgress.NOTIFY_STATE_WINDOW);
},
finish() {
this.docShell.
QueryInterface(Ci.nsIInterfaceRequestor).
getInterface(Ci.nsIWebProgress).
removeProgressListener(this);
this.callback();
},
onStateChange (webProgress, req, flags) {
if (req.name.startsWith("data:application/vnd.mozilla.xul")) {
if (flags & Ci.nsIWebProgressListener.STATE_STOP)
this.finish();
}
},
QueryInterface: ChromeUtils.generateQI([
"nsIWebProgressListener",
"nsISupportsWeakReference",
]),
}
var systemPrincipal = Cc["@mozilla.org/systemprincipal;1"]
.getService(Ci.nsIPrincipal);
var webNav = SpecialPowers.Services.appShell.createWindowlessBrowser(true);
var docShell = webNav.docShell;
docShell.createAboutBlankDocumentViewer(systemPrincipal, systemPrincipal);
var win = docShell.docViewer.DOMDocument.defaultView;
progressListener.add(docShell, function(){
is(win.document.documentURI, "data:application/xhtml+xml;charset=utf-8,<window/>");
webNav.close();
SimpleTest.finish();
});
win.location = "data:application/xhtml+xml;charset=utf-8,<window/>";
}
addLoadEvent(function onLoad() {
test();
});
]]>
</script>
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 565388</a>
</body>
</window>