mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 19:59:18 +02:00
11 lines
341 B
JavaScript
11 lines
341 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");
|
|
}
|