forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|  * http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| /**
 | |
|  * Make sure that tabs are restored on demand as otherwise the tab will start
 | |
|  * loading immediately and we can't check its icon and label.
 | |
|  */
 | |
| add_task(function setup() {
 | |
|   Services.prefs.setBoolPref("browser.sessionstore.restore_on_demand", true);
 | |
| 
 | |
|   registerCleanupFunction(() => {
 | |
|     Services.prefs.clearUserPref("browser.sessionstore.restore_on_demand");
 | |
|   });
 | |
| });
 | |
| 
 | |
| /**
 | |
|  * Ensure that a pending tab has label and icon correctly set.
 | |
|  */
 | |
| add_task(function test_label_and_icon() {
 | |
|   // Create a new tab.
 | |
|   let tab = gBrowser.addTab("about:robots");
 | |
|   let browser = tab.linkedBrowser;
 | |
|   yield promiseBrowserLoaded(browser);
 | |
| 
 | |
|   // Retrieve the tab state.
 | |
|   yield TabStateFlusher.flush(browser);
 | |
|   let state = ss.getTabState(tab);
 | |
|   yield promiseRemoveTab(tab);
 | |
|   browser = null;
 | |
| 
 | |
|   // Open a new tab to restore into.
 | |
|   tab = gBrowser.addTab("about:blank");
 | |
|   ss.setTabState(tab, state);
 | |
|   yield promiseTabRestoring(tab);
 | |
| 
 | |
|   // Check that label and icon are set for the restoring tab.
 | |
|   ok(gBrowser.getIcon(tab).startsWith("data:image/png;"), "icon is set");
 | |
|   is(tab.label, "Gort! Klaatu barada nikto!", "label is set");
 | |
| 
 | |
|   // Cleanup.
 | |
|   yield promiseRemoveTab(tab);
 | |
| });
 | 
