summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/browser_bug_1387976_restore_lazy_tab_browser_muted_state.js
blob: a3436fcefb82b024dad4634ddf62f0256ce55c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { TabState } = ChromeUtils.importESModule(
  "resource:///modules/sessionstore/TabState.sys.mjs"
);

/**
 * Simulate a restart of a tab by removing it, then add a lazy tab
 * which is restored with the tabData of the removed tab.
 *
 * @param tab
 *        The tab to restart.
 * @return {Object} the restored lazy tab
 */
const restartTab = async function (tab) {
  let tabData = TabState.clone(tab);
  BrowserTestUtils.removeTab(tab);

  let restoredLazyTab = BrowserTestUtils.addTab(gBrowser, "", {
    createLazyBrowser: true,
  });
  SessionStore.setTabState(restoredLazyTab, JSON.stringify(tabData));
  return restoredLazyTab;
};

function get_tab_state(tab) {
  return JSON.parse(SessionStore.getTabState(tab));
}

add_task(async function () {
  const tab = BrowserTestUtils.addTab(gBrowser, "http://mochi.test:8888/");
  const browser = gBrowser.getBrowserForTab(tab);
  await BrowserTestUtils.browserLoaded(browser);

  // Let's make sure the tab is not in a muted state at the beginning
  ok(!("muted" in get_tab_state(tab)), "Tab should not be in a muted state");

  info("toggling Muted audio...");
  tab.toggleMuteAudio();

  ok("muted" in get_tab_state(tab), "Tab should be in a muted state");

  info("Restarting tab...");
  let restartedTab = await restartTab(tab);

  ok(
    "muted" in get_tab_state(restartedTab),
    "Restored tab should still be in a muted state after restart"
  );
  ok(!restartedTab.linkedPanel, "Restored tab should not be inserted");

  BrowserTestUtils.removeTab(restartedTab);
});