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
64
65
66
67
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async function() {
// Test that changing the URL in a pinned tab works correctly
let TEST_LINK_INITIAL = "about:mozilla";
let TEST_LINK_CHANGED = "about:support";
let appTab = BrowserTestUtils.addTab(gBrowser, TEST_LINK_INITIAL);
let browser = appTab.linkedBrowser;
await BrowserTestUtils.browserLoaded(browser);
gBrowser.pinTab(appTab);
is(appTab.pinned, true, "Tab was successfully pinned");
let initialTabsNo = gBrowser.tabs.length;
gBrowser.selectedTab = appTab;
gURLBar.focus();
gURLBar.value = TEST_LINK_CHANGED;
gURLBar.goButton.click();
await BrowserTestUtils.browserLoaded(browser);
is(
appTab.linkedBrowser.currentURI.spec,
TEST_LINK_CHANGED,
"New page loaded in the app tab"
);
is(gBrowser.tabs.length, initialTabsNo, "No additional tabs were opened");
// Now check that opening a link that does create a new tab works,
// and also that it nulls out the opener.
let pageLoadPromise = BrowserTestUtils.browserLoaded(
appTab.linkedBrowser,
false,
"http://example.com/"
);
BrowserTestUtils.loadURI(appTab.linkedBrowser, "http://example.com/");
info("Started loading example.com");
await pageLoadPromise;
info("Loaded example.com");
let newTabPromise = BrowserTestUtils.waitForNewTab(
gBrowser,
"http://example.org/"
);
await SpecialPowers.spawn(browser, [], async function() {
let link = content.document.createElement("a");
link.href = "http://example.org/";
content.document.body.appendChild(link);
link.click();
});
info("Created & clicked link");
let extraTab = await newTabPromise;
info("Got a new tab");
await SpecialPowers.spawn(extraTab.linkedBrowser, [], async function() {
is(content.opener, null, "No opener should be available");
});
BrowserTestUtils.removeTab(extraTab);
});
registerCleanupFunction(function() {
gBrowser.removeTab(gBrowser.selectedTab);
});
|