summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/test/browser/browser_preloaded_newtab.js
blob: bda4ada24d20ff766092b4a3bb6733b57c4ad570 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Verify RDM opens for a preloaded about:newtab browser.

const TEST_URL = "https://example.com/";

addRDMTask(
  null,
  async function () {
    const preloadedBrowser = gBrowser.preloadedBrowser;

    // Open a tab with about:newtab.
    // Don't wait for load because the page is preloaded.
    const tab = await addTab(BROWSER_NEW_TAB_URL, {
      waitForLoad: false,
    });
    const browser = tab.linkedBrowser;
    is(browser, preloadedBrowser, "Got a preloaded browser for newtab");

    // Open RDM and try to navigate
    const { ui } = await openRDM(tab);
    await waitForDeviceAndViewportState(ui);

    await navigateTo(TEST_URL);
    ok(true, "Test URL navigated successfully");

    await closeRDM(tab);
    await removeTab(tab);
  },
  { onlyPrefAndTask: true }
);