summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/browser/browser_label_textlink.js
blob: 861086707eb262c7144b28aae63a1860f156ab34 (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
add_task(function* () {
  yield BrowserTestUtils.withNewTab({gBrowser, url: "about:config"}, function*(browser) {
    let newTabURL = "http://www.example.com/";
    yield ContentTask.spawn(browser, newTabURL, function*(newTabURL) {
      let doc = content.document;
      let label = doc.createElement("label");
      label.href = newTabURL;
      label.id = "textlink-test";
      label.className = "text-link";
      label.textContent = "click me";
      doc.documentElement.append(label);
    });

    // Test that click will open tab in foreground.
    let awaitNewTab = BrowserTestUtils.waitForNewTab(gBrowser, newTabURL);
    yield BrowserTestUtils.synthesizeMouseAtCenter("#textlink-test", {}, browser);
    let newTab = yield awaitNewTab;
    is(newTab.linkedBrowser, gBrowser.selectedBrowser, "selected tab should be example page");
    yield BrowserTestUtils.removeTab(gBrowser.selectedTab);

    // Test that ctrl+shift+click/meta+shift+click will open tab in background.
    awaitNewTab = BrowserTestUtils.waitForNewTab(gBrowser, newTabURL);
    yield BrowserTestUtils.synthesizeMouseAtCenter("#textlink-test",
      {ctrlKey: true, metaKey: true, shiftKey: true},
      browser);
    yield awaitNewTab;
    is(gBrowser.selectedBrowser, browser, "selected tab should be original tab");
    yield BrowserTestUtils.removeTab(gBrowser.tabs[gBrowser.tabs.length - 1]);

    // Middle-clicking should open tab in foreground.
    awaitNewTab = BrowserTestUtils.waitForNewTab(gBrowser, newTabURL);
    yield BrowserTestUtils.synthesizeMouseAtCenter("#textlink-test",
      {button: 1}, browser);
    newTab = yield awaitNewTab;
    is(newTab.linkedBrowser, gBrowser.selectedBrowser, "selected tab should be example page");
    yield BrowserTestUtils.removeTab(gBrowser.tabs[gBrowser.tabs.length - 1]);
  });
});