forked from mirrors/gecko-dev
		
	 ef781411f3
			
		
	
	
		ef781411f3
		
	
	
	
	
		
			
			MozReview-Commit-ID: AqjIr7xkXs9 --HG-- extra : rebase_source : 2dc0a20df7fb8a105ff68105b8a7c7c81916f288
		
			
				
	
	
		
			92 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|  * http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| /**
 | |
|  * This test makes sure that we correctly preserve tab attributes when storing
 | |
|  * and restoring tabs. It also ensures that we skip special attributes like
 | |
|  * 'image', 'muted', 'activemedia-blocked' and 'pending' that need to be
 | |
|  * handled differently or internally.
 | |
|  */
 | |
| 
 | |
| const PREF = "browser.sessionstore.restore_on_demand";
 | |
| const PREF2 = "media.block-autoplay-until-in-foreground";
 | |
| 
 | |
| add_task(async function test() {
 | |
|   Services.prefs.setBoolPref(PREF, true);
 | |
|   registerCleanupFunction(() => Services.prefs.clearUserPref(PREF));
 | |
| 
 | |
|   // Since we need to test 'activemedia-blocked' attribute.
 | |
|   Services.prefs.setBoolPref(PREF2, true);
 | |
|   registerCleanupFunction(() => Services.prefs.clearUserPref(PREF2));
 | |
| 
 | |
|   // Add a new tab with a nice icon.
 | |
|   let tab = BrowserTestUtils.addTab(gBrowser, "about:robots");
 | |
|   await promiseBrowserLoaded(tab.linkedBrowser);
 | |
| 
 | |
|   // Because there is debounce logic in ContentLinkHandler.jsm to reduce the
 | |
|   // favicon loads, we have to wait some time before checking that icon was
 | |
|   // stored properly.
 | |
|   await BrowserTestUtils.waitForCondition(() => {
 | |
|     return gBrowser.getIcon(tab) != null;
 | |
|   }, "wait for favicon load to finish", 100, 5);
 | |
| 
 | |
|   // Check that the tab has 'image' and 'iconloadingprincipal' attributes.
 | |
|   ok(tab.hasAttribute("image"), "tab.image exists");
 | |
|   ok(tab.hasAttribute("iconloadingprincipal"), "tab.iconloadingprincipal exists");
 | |
| 
 | |
|   tab.toggleMuteAudio();
 | |
|   // Check that the tab has a 'muted' attribute.
 | |
|   ok(tab.hasAttribute("muted"), "tab.muted exists");
 | |
| 
 | |
|   // Pretend to start autoplay media in tab, tab should get the notification.
 | |
|   tab.linkedBrowser.activeMediaBlockStarted();
 | |
|   ok(tab.hasAttribute("activemedia-blocked"), "tab.activemedia-blocked exists");
 | |
| 
 | |
|   // Make sure we do not persist 'image','muted' and 'activemedia-blocked' attributes.
 | |
|   ss.persistTabAttribute("image");
 | |
|   ss.persistTabAttribute("muted");
 | |
|   ss.persistTabAttribute("iconloadingprincipal");
 | |
|   ss.persistTabAttribute("activemedia-blocked");
 | |
|   let {attributes} = JSON.parse(ss.getTabState(tab));
 | |
|   ok(!("image" in attributes), "'image' attribute not saved");
 | |
|   ok(!("iconloadingprincipal" in attributes), "'iconloadingprincipal' attribute not saved");
 | |
|   ok(!("muted" in attributes), "'muted' attribute not saved");
 | |
|   ok(!("custom" in attributes), "'custom' attribute not saved");
 | |
|   ok(!("activemedia-blocked" in attributes), "'activemedia-blocked' attribute not saved");
 | |
| 
 | |
|   // Test persisting a custom attribute.
 | |
|   tab.setAttribute("custom", "foobar");
 | |
|   ss.persistTabAttribute("custom");
 | |
| 
 | |
|   ({attributes} = JSON.parse(ss.getTabState(tab)));
 | |
|   is(attributes.custom, "foobar", "'custom' attribute is correct");
 | |
| 
 | |
|   // Make sure we're backwards compatible and restore old 'image' attributes.
 | |
|   let state = {
 | |
|     entries: [{url: "about:mozilla", triggeringPrincipal_base64 }],
 | |
|     attributes: {custom: "foobaz"},
 | |
|     image: gBrowser.getIcon(tab)
 | |
|   };
 | |
| 
 | |
|   // Prepare a pending tab waiting to be restored.
 | |
|   let promise = promiseTabRestoring(tab);
 | |
|   ss.setTabState(tab, JSON.stringify(state));
 | |
|   await promise;
 | |
| 
 | |
|   ok(tab.hasAttribute("pending"), "tab is pending");
 | |
|   is(gBrowser.getIcon(tab), state.image, "tab has correct icon");
 | |
|   ok(!state.attributes.image, "'image' attribute not saved");
 | |
| 
 | |
|   // Let the pending tab load.
 | |
|   gBrowser.selectedTab = tab;
 | |
|   await promiseTabRestored(tab);
 | |
| 
 | |
|   // Ensure no 'image' or 'pending' attributes are stored.
 | |
|   ({attributes} = JSON.parse(ss.getTabState(tab)));
 | |
|   ok(!("image" in attributes), "'image' attribute not saved");
 | |
|   ok(!("pending" in attributes), "'pending' attribute not saved");
 | |
|   is(attributes.custom, "foobaz", "'custom' attribute is correct");
 | |
| 
 | |
|   // Clean up.
 | |
|   gBrowser.removeTab(tab);
 | |
| });
 |