diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 06:00:38 -0500 |
commit | 8148615da179fdd60f19018e13b4e94b95609cc6 (patch) | |
tree | 771fccdd99fa3adf35fdd2c81d8197b415a89b91 /browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js | |
parent | 494802c1be7888025b95260d23db187467d2b9dd (diff) | |
download | UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.gz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.lz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.tar.xz UXP-8148615da179fdd60f19018e13b4e94b95609cc6.zip |
Remove browser tests - Part 1: The Tests (except for experiments)
Diffstat (limited to 'browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js')
-rw-r--r-- | browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js b/browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js deleted file mode 100644 index 4ec36a7cc..000000000 --- a/browser/base/content/test/tabs/browser_tabSwitchPrintPreview.js +++ /dev/null @@ -1,29 +0,0 @@ -const kURL1 = "data:text/html,Should I stay or should I go?"; -const kURL2 = "data:text/html,I shouldn't be here!"; - -add_task(function* setup() { - yield SpecialPowers.pushPrefEnv({ - set: [["dom.ipc.processCount", 1]] - }); -}); - -/** - * Verify that if we open a new tab and try to make it the selected tab while - * print preview is up, that doesn't happen. - */ -add_task(function* () { - yield BrowserTestUtils.withNewTab(kURL1, function* (browser) { - let tab = gBrowser.addTab(kURL2); - document.getElementById("cmd_printPreview").doCommand(); - gBrowser.selectedTab = tab; - yield BrowserTestUtils.waitForCondition(() => gInPrintPreviewMode, "should be in print preview mode"); - isnot(gBrowser.selectedTab, tab, "Selected tab should not be the tab we added"); - is(gBrowser.selectedTab, PrintPreviewListener._printPreviewTab, "Selected tab should be the print preview tab"); - gBrowser.selectedTab = tab; - isnot(gBrowser.selectedTab, tab, "Selected tab should still not be the tab we added"); - is(gBrowser.selectedTab, PrintPreviewListener._printPreviewTab, "Selected tab should still be the print preview tab"); - PrintUtils.exitPrintPreview(); - yield BrowserTestUtils.waitForCondition(() => !gInPrintPreviewMode, "should be in print preview mode"); - yield BrowserTestUtils.removeTab(tab); - }); -}); |