summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser_console_restore.js
blob: df06ba8a960c1e31acb0caefc015804b90c6f57a (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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Check that the browser console gets session state is set correctly, and that
// it re-opens when restore is requested.

"use strict";

add_task(function* () {
  is(HUDService.getBrowserConsoleSessionState(), false, "Session state false by default");
  HUDService.storeBrowserConsoleSessionState();
  is(HUDService.getBrowserConsoleSessionState(), false,
    "Session state still not true even after setting (since Browser Console is closed)");

  yield HUDService.toggleBrowserConsole();
  HUDService.storeBrowserConsoleSessionState();
  is(HUDService.getBrowserConsoleSessionState(), true,
    "Session state true (since Browser Console is opened)");

  info("Closing the browser console and waiting for the session restore to reopen it")
  yield HUDService.toggleBrowserConsole();

  let opened = waitForBrowserConsole();
  HUDService.restoreBrowserConsoleSession();

  info("Waiting for the console to open after session restore")
  yield opened;
});