Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | function test() { |
michael@0 | 6 | /** Test for Bug 480893 **/ |
michael@0 | 7 | |
michael@0 | 8 | waitForExplicitFinish(); |
michael@0 | 9 | |
michael@0 | 10 | // Test that starting a new session loads a blank page if Firefox is |
michael@0 | 11 | // configured to display a blank page at startup (browser.startup.page = 0) |
michael@0 | 12 | gPrefService.setIntPref("browser.startup.page", 0); |
michael@0 | 13 | let tab = gBrowser.addTab("about:sessionrestore"); |
michael@0 | 14 | gBrowser.selectedTab = tab; |
michael@0 | 15 | let browser = tab.linkedBrowser; |
michael@0 | 16 | whenBrowserLoaded(browser, function() { |
michael@0 | 17 | let doc = browser.contentDocument; |
michael@0 | 18 | |
michael@0 | 19 | // click on the "Start New Session" button after about:sessionrestore is loaded |
michael@0 | 20 | doc.getElementById("errorCancel").click(); |
michael@0 | 21 | whenBrowserLoaded(browser, function() { |
michael@0 | 22 | let doc = browser.contentDocument; |
michael@0 | 23 | |
michael@0 | 24 | is(doc.URL, "about:blank", "loaded page is about:blank"); |
michael@0 | 25 | |
michael@0 | 26 | // Test that starting a new session loads the homepage (set to http://mochi.test:8888) |
michael@0 | 27 | // if Firefox is configured to display a homepage at startup (browser.startup.page = 1) |
michael@0 | 28 | let homepage = "http://mochi.test:8888/"; |
michael@0 | 29 | gPrefService.setCharPref("browser.startup.homepage", homepage); |
michael@0 | 30 | gPrefService.setIntPref("browser.startup.page", 1); |
michael@0 | 31 | gBrowser.loadURI("about:sessionrestore"); |
michael@0 | 32 | whenBrowserLoaded(browser, function() { |
michael@0 | 33 | let doc = browser.contentDocument; |
michael@0 | 34 | |
michael@0 | 35 | // click on the "Start New Session" button after about:sessionrestore is loaded |
michael@0 | 36 | doc.getElementById("errorCancel").click(); |
michael@0 | 37 | whenBrowserLoaded(browser, function() { |
michael@0 | 38 | let doc = browser.contentDocument; |
michael@0 | 39 | |
michael@0 | 40 | is(doc.URL, homepage, "loaded page is the homepage"); |
michael@0 | 41 | |
michael@0 | 42 | // close tab, restore default values and finish the test |
michael@0 | 43 | gBrowser.removeTab(tab); |
michael@0 | 44 | gPrefService.clearUserPref("browser.startup.page"); |
michael@0 | 45 | gPrefService.clearUserPref("browser.startup.homepage"); |
michael@0 | 46 | finish(); |
michael@0 | 47 | }); |
michael@0 | 48 | }); |
michael@0 | 49 | }); |
michael@0 | 50 | }); |
michael@0 | 51 | } |