forked from mirrors/gecko-dev
		
	* If Firefox view tab is the last selected tab when a window is closed it should not be saved; the first tab should be used instead. This patch updates a test, updates the title that is saved and the selected index Differential Revision: https://phabricator.services.mozilla.com/D166362
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* Any copyright is dedicated to the Public Domain.
 | 
						|
   http://creativecommons.org/publicdomain/zero/1.0/ */
 | 
						|
 | 
						|
"use strict";
 | 
						|
 | 
						|
const CLOSED_URI = "https://www.example.com/";
 | 
						|
 | 
						|
add_task(async function test_TODO() {
 | 
						|
  let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, CLOSED_URI);
 | 
						|
 | 
						|
  Assert.equal(gBrowser.tabs[0].linkedBrowser.currentURI.filePath, "blank");
 | 
						|
 | 
						|
  Assert.equal(gBrowser.tabs[1].linkedBrowser.currentURI.spec, CLOSED_URI);
 | 
						|
 | 
						|
  Assert.ok(gBrowser.selectedTab == tab);
 | 
						|
 | 
						|
  let state = ss.getCurrentState(true);
 | 
						|
 | 
						|
  // SessionStore uses one-based indexes
 | 
						|
  Assert.equal(state.windows[0].selected, 2);
 | 
						|
 | 
						|
  await EventUtils.synthesizeMouseAtCenter(
 | 
						|
    window.document.getElementById("firefox-view-button"),
 | 
						|
    { type: "mousedown" },
 | 
						|
    window
 | 
						|
  );
 | 
						|
  Assert.ok(window.FirefoxViewHandler.tab.selected);
 | 
						|
 | 
						|
  Assert.equal(gBrowser.tabs[2], window.FirefoxViewHandler.tab);
 | 
						|
 | 
						|
  state = ss.getCurrentState(true);
 | 
						|
 | 
						|
  // The FxView tab doesn't get recorded in the session state, but if it's the last selected tab when a window is closed
 | 
						|
  // we want to point to the first tab in the tab strip upon restore
 | 
						|
  Assert.equal(state.windows[0].selected, 1);
 | 
						|
 | 
						|
  gBrowser.removeTab(window.FirefoxViewHandler.tab);
 | 
						|
  gBrowser.removeTab(tab);
 | 
						|
});
 |