summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/browser_link_in_tab_title_and_url_prefilled_new_window.js
blob: 6d18887941fb24a874dd16832ecde426a05b0f9b (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
/* 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/. */

// Test the behavior of the tab and the urlbar on new window opened by clicking
// link.

/* import-globals-from common_link_in_tab_title_and_url_prefilled.js */
Services.scriptloader.loadSubScript(
  "chrome://mochitests/content/browser/browser/base/content/test/tabs/common_link_in_tab_title_and_url_prefilled.js",
  this
);

add_task(async function normal_page__blank_target() {
  await doTestWithNewWindow({
    link: "wait-a-bit--blank-target",
    expectedSetURICalled: true,
  });
});

add_task(async function normal_page__other_target() {
  await doTestWithNewWindow({
    link: "wait-a-bit--other-target",
    expectedSetURICalled: false,
  });
});

add_task(async function normal_page__by_script() {
  await doTestWithNewWindow({
    link: "wait-a-bit--by-script",
    expectedSetURICalled: false,
  });
});

add_task(async function blank_page__blank_target() {
  await doTestWithNewWindow({
    link: "blank-page--blank-target",
    expectedSetURICalled: false,
  });
});

add_task(async function blank_page__other_target() {
  await doTestWithNewWindow({
    link: "blank-page--other-target",
    expectedSetURICalled: false,
  });
});

add_task(async function blank_page__by_script() {
  await doTestWithNewWindow({
    link: "blank-page--by-script",
    expectedSetURICalled: false,
  });
});