blob: ef566288d9aa3df1317f6ab742500c42eddb3eda (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test link helpers openDocLink, openTrustedLink.
// Use any valid test page here.
const TEST_URI = TEST_URI_ROOT_SSL + "dummy.html";
const {
openDocLink,
openTrustedLink,
} = require("resource://devtools/client/shared/link.js");
add_task(async function () {
// Open a link to a page that will not trigger any request.
info("Open web link to example.com test page");
openDocLink(TEST_URI);
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
is(
gBrowser.selectedBrowser.currentURI.spec,
TEST_URI,
"openDocLink opened a tab with the expected url"
);
info("Open trusted link to about:config");
openTrustedLink("about:config");
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
is(
gBrowser.selectedBrowser.currentURI.spec,
"about:config",
"openTrustedLink opened a tab with the expected url"
);
await removeTab(gBrowser.selectedTab);
await removeTab(gBrowser.selectedTab);
});
|