1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1342989
-->
<window title="Mozilla Bug 1342989"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script type="application/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
const WEB_PROGRESS_LISTENER_FLAGS =
Object.keys(Ci.nsIWebProgressListener).filter(
propName => propName.startsWith("STATE_")
);
function bitFlagsToNames(flags, knownNames, intf) {
return knownNames.map( (F) => {
return (flags & intf[F]) ? F : undefined;
}).filter( (s) => !!s );
}
var progressListener = {
add: function(docShell, callback) {
this.callback = callback;
this.docShell = docShell;
docShell.
QueryInterface(Ci.nsIInterfaceRequestor).
getInterface(Ci.nsIWebProgress).
addProgressListener(this, Ci.nsIWebProgress.NOTIFY_STATE_ALL);
},
finish: function(success) {
this.docShell.
QueryInterface(Ci.nsIInterfaceRequestor).
getInterface(Ci.nsIWebProgress).
removeProgressListener(this);
this.callback(success);
},
onStateChange: function (webProgress, req, flags, status) {
if (!(flags & Ci.nsIWebProgressListener.STATE_IS_DOCUMENT) &&
!(flags & Ci.nsIWebProgressListener.STATE_IS_REDIRECTED_DOCUMENT))
return;
var channel = req.QueryInterface(Ci.nsIChannel);
if (flags & Ci.nsIWebProgressListener.STATE_IS_REDIRECTED_DOCUMENT) {
SimpleTest.is(channel.URI.host, "example.org",
"Should be redirected to example.org (see test_docRedirect.sjs)");
this.finish(true);
}
// Fail in case we didn't receive document redirection event.
if (flags & Ci.nsIWebProgressListener.STATE_STOP)
this.finish(false);
},
QueryInterface: function(iid) {
if (iid.equals(Ci.nsIWebProgressListener) ||
iid.equals(Ci.nsISupportsWeakReference))
return this;
throw Components.Exception("", Cr.NS_ERROR_NO_INTERFACE);
}
}
var webNav = Cc["@mozilla.org/appshell/appShellService;1"].
getService(Ci.nsIAppShellService).createWindowlessBrowser(true);
let docShell = webNav.docShell;
let system = Cc["@mozilla.org/systemprincipal;1"].getService(Ci.nsIPrincipal);
docShell.createAboutBlankContentViewer(system, system);
progressListener.add(docShell, function(success) {
webNav.close();
SimpleTest.is(success, true, "Received document redirect event");
SimpleTest.finish();
});
var win = docShell.contentViewer.DOMDocument.defaultView;
win.location = "http://example.com/chrome/docshell/test/chrome/test_docRedirect.sjs"
]]>
</script>
<body xmlns="http://www.w3.org/1999/xhtml">
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1342989"
target="_blank">Mozilla Bug 1342989</a>
</body>
</window>
|