зеркало из https://github.com/mozilla/gecko-dev.git
34 строки
1.1 KiB
JavaScript
34 строки
1.1 KiB
JavaScript
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// Test link helpers openWebLink, openTrustedLink.
|
|
|
|
// Use any valid test page here.
|
|
const TEST_URI = TEST_URI_ROOT + "dummy.html";
|
|
|
|
const {openWebLink, openTrustedLink} =
|
|
require("devtools/client/shared/link");
|
|
|
|
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");
|
|
openWebLink(TEST_URI);
|
|
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
|
|
|
|
is(gBrowser.selectedBrowser.currentURI.spec, TEST_URI,
|
|
"openWebLink opened a tab with the expected url");
|
|
|
|
info("Open trusted link to about:debugging");
|
|
openTrustedLink("about:debugging");
|
|
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
|
|
|
|
is(gBrowser.selectedBrowser.currentURI.spec, "about:debugging",
|
|
"openTrustedLink opened a tab with the expected url");
|
|
|
|
await removeTab(gBrowser.selectedTab);
|
|
await removeTab(gBrowser.selectedTab);
|
|
});
|