summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/browser_tabswitch_select.js
blob: 3868764bed69f1f2af275d5c708a4245c47794c6 (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
57
58
59
60
61
62
63
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

add_task(async function () {
  let tab1 = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "about:support"
  );

  let tab2 = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    "data:text/html,Goodbye"
  );

  gURLBar.select();

  await BrowserTestUtils.switchTab(gBrowser, tab1);

  let focusPromise = BrowserTestUtils.waitForEvent(
    gURLBar.inputField,
    "select",
    true
  );
  await BrowserTestUtils.switchTab(gBrowser, tab2);
  await focusPromise;

  is(gURLBar.selectionStart, 0, "url is selected");
  is(gURLBar.selectionEnd, 22, "url is selected");

  // Now check that the url bar is focused when a new tab is opened while in fullscreen.

  let fullScreenEntered = TestUtils.waitForCondition(
    () => document.documentElement.getAttribute("sizemode") == "fullscreen"
  );
  BrowserFullScreen();
  await fullScreenEntered;

  tab2.linkedBrowser.focus();

  // Open a new tab
  focusPromise = BrowserTestUtils.waitForEvent(
    gURLBar.inputField,
    "focus",
    true
  );
  EventUtils.synthesizeKey("T", { accelKey: true });
  await focusPromise;

  is(document.activeElement, gURLBar.inputField, "urlbar is focused");

  let fullScreenExited = TestUtils.waitForCondition(
    () => document.documentElement.getAttribute("sizemode") != "fullscreen"
  );
  BrowserFullScreen();
  await fullScreenExited;

  BrowserTestUtils.removeTab(gBrowser.selectedTab);
  BrowserTestUtils.removeTab(tab1);
  BrowserTestUtils.removeTab(tab2);
});