blob: 0bea31728a4f8ebb2985b95b6a3d29459fd948a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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"
);
}
|