From ff8794c2c85560b2eae5dfe092db916a3a06d379 Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Thu, 10 May 2012 01:58:26 +0200 Subject: [PATCH] Bug 752216. (Gv1-FF) browser_popupNotification.js: Use locationbar to simplify test 19. r=gavin. --- .../content/test/browser_popupNotification.js | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/browser/base/content/test/browser_popupNotification.js b/browser/base/content/test/browser_popupNotification.js index aed1ead1f7b..d7c6bd53b53 100644 --- a/browser/base/content/test/browser_popupNotification.js +++ b/browser/base/content/test/browser_popupNotification.js @@ -261,7 +261,6 @@ var tests = [ // switch back to the old browser gBrowser.selectedTab = this.oldSelectedTab; - }, onHidden: function (popup) { // actually remove the notification to prevent it from reappearing @@ -601,14 +600,10 @@ var tests = [ // Test notification when chrome is hidden { // Test #19 run: function () { - this.oldSelectedTab = gBrowser.selectedTab; - gBrowser.selectedTab = gBrowser.addTab("about:blank"); - - let self = this; - loadURI("about:addons", function() { - self.notifyObj = new basicNotification(); - self.notification = showNotification(self.notifyObj); - }); + window.locationbar.visible = false; + this.notifyObj = new basicNotification(); + this.notification = showNotification(this.notifyObj); + window.locationbar.visible = true; }, onShown: function (popup) { checkPopup(popup, this.notifyObj); @@ -619,9 +614,6 @@ var tests = [ ok(this.notifyObj.dismissalCallbackTriggered, "dismissal callback triggered"); this.notification.remove(); ok(this.notifyObj.removedCallbackTriggered, "removed callback triggered"); - - gBrowser.removeTab(gBrowser.selectedTab); - gBrowser.selectedTab = this.oldSelectedTab; } }, // Test notification is removed when dismissed if removeOnDismissal is true