blob: b61aeba6faebdc5a95edb72831ac9888e386d29a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const { ShellService } = ChromeUtils.import(
"resource:///modules/ShellService.jsm"
);
function test() {
ShellService.setDefaultBrowser(true, false);
ok(
ShellService.isDefaultBrowser(true, false),
"we got here and are the default browser"
);
ok(
ShellService.isDefaultBrowser(true, true),
"we got here and are the default browser"
);
}
|