summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/browser/browser_switchTab_currentTab.js
blob: eccee800e3eefc56b6a8e56d2d6809a0e1e3282c (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/**
 * This test ensures that switch to tab still works when the URI contains an
 * encoded part.
 */

"use strict";

add_task(async function test_switchTab_currentTab() {
  registerCleanupFunction(PlacesUtils.history.clear);
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: "about:robots#1" },
    async () => {
      await BrowserTestUtils.withNewTab(
        { gBrowser, url: "about:robots#2" },
        async () => {
          let context = await UrlbarTestUtils.promiseAutocompleteResultPopup({
            window,
            value: "robot",
          });
          Assert.ok(
            context.results.some(
              result =>
                result.type == UrlbarUtils.RESULT_TYPE.TAB_SWITCH &&
                result.payload.url == "about:robots#1"
            )
          );
          Assert.ok(
            !context.results.some(
              result =>
                result.type == UrlbarUtils.RESULT_TYPE.TAB_SWITCH &&
                result.payload.url == "about:robots#2"
            )
          );
        }
      );
    }
  );
});