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

"use strict";

/**
 * Tests the cursor remains in the right place when a new window is opened.
 */

add_task(async function test_windowSwitch() {
  let tab = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "about:mozilla"
  );
  await UrlbarTestUtils.promiseAutocompleteResultPopup({
    window,
    value: "www.mozilla.org",
  });
  await UrlbarTestUtils.waitForAutocompleteResultAt(window, 0);

  gURLBar.focus();
  gURLBar.inputField.setSelectionRange(4, 4);

  let newWindow = await BrowserTestUtils.openNewBrowserWindow();

  await BrowserTestUtils.closeWindow(newWindow);

  Assert.equal(
    document.activeElement,
    gURLBar.inputField,
    "URL Bar should be focused"
  );
  Assert.equal(gURLBar.selectionStart, 4, "Should not have moved the cursor");
  Assert.equal(gURLBar.selectionEnd, 4, "Should not have selected anything");

  BrowserTestUtils.removeTab(tab);
});