blob: 09846b8122391b939ccc1223a4f564b1f254c725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
const contract = "@mozilla.org/network/protocol/about;1?what=newtab";
const am = Cc[contract].getService(Ci.nsIAboutModule);
const uri = Services.io.newURI("about:newtab");
function run_test() {
test_AS_enabled_flags();
}
// Activity Stream, however, is e10s-capable, and should advertise it.
function test_AS_enabled_flags() {
let flags = am.getURIFlags(uri);
ok(flags & Ci.nsIAboutModule.URI_MUST_LOAD_IN_CHILD);
}
|