blob: 2abe3c5768c62de7b604956df285acd95552c41f (
plain)
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
|
Cu.import("resource://gre/modules/NetUtil.jsm");
function run_test() {
var base = NetUtil.newURI("http://www.example.com", null, null);
var about1 = NetUtil.newURI("about:blank", null, null);
var about2 = NetUtil.newURI("about:blank", null, base);
var chan1 = NetUtil.newChannel({
uri: about1,
loadUsingSystemPrincipal: true
}).QueryInterface(Components.interfaces.nsIPropertyBag2);
var chan2 = NetUtil.newChannel({
uri: about2,
loadUsingSystemPrincipal: true
}).QueryInterface(Components.interfaces.nsIPropertyBag2);
var haveProp = false;
var propVal = null;
try {
propVal = chan1.getPropertyAsInterface("baseURI",
Components.interfaces.nsIURI);
haveProp = true;
} catch (e if e.result == Components.results.NS_ERROR_NOT_AVAILABLE) {
// Property shouldn't be there.
}
do_check_eq(propVal, null);
do_check_eq(haveProp, false);
do_check_eq(chan2.getPropertyAsInterface("baseURI",
Components.interfaces.nsIURI),
base);
}
|