summaryrefslogtreecommitdiffstats
path: root/browser/components/shell/test/browser_633221.js
blob: dbc66e2864821219380194ec7d023a4a3181ba1f (plain)
1
2
3
4
5
6
7
8
9
10
11
function test() {
  ShellService.setDefaultBrowser(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"
  );
}