forked from mirrors/gecko-dev
MozReview-Commit-ID: HIUTSdkXxbY --HG-- extra : rebase_source : 2f05e2f275ac7f293f9c650bdec8943189e3ce01
10 lines
321 B
JavaScript
10 lines
321 B
JavaScript
//
|
|
// Whitelisting this test.
|
|
// As part of bug 1077403, the leaking uncaught rejection should be fixed.
|
|
//
|
|
thisTestLeaksUncaughtRejectionsAndShouldBeFixed("TypeError: this.docShell is null");
|
|
|
|
function test() {
|
|
ok(!!gBrowser, "gBrowser exists");
|
|
is(gBrowser, getBrowser(), "both ways of getting tabbrowser work");
|
|
}
|