forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1656852 click on a link in Network Headers Panel r=Honza,bomsy
Differential Revision: https://phabricator.services.mozilla.com/D129426
- Loading branch information
1 parent
4c162ca
commit 75ecedf
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
devtools/client/netmonitor/test/browser_net_headers-link_clickable.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* Any copyright is dedicated to the Public Domain. | ||
http://creativecommons.org/publicdomain/zero/1.0/ */ | ||
|
||
"use strict"; | ||
|
||
/** | ||
* Test if links in headers panel are clickable. | ||
*/ | ||
|
||
add_task(async function() { | ||
const { tab, monitor } = await initNetMonitor(JSON_LONG_URL, { | ||
requestCount: 1, | ||
}); | ||
info("Starting test... "); | ||
|
||
const { document, store, windowRequire } = monitor.panelWin; | ||
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index"); | ||
|
||
store.dispatch(Actions.batchEnable(false)); | ||
|
||
await performRequests(monitor, tab, 1); | ||
|
||
info("Selecting first request"); | ||
EventUtils.sendMouseEvent( | ||
{ type: "mousedown" }, | ||
document.querySelectorAll(".request-list-item")[0] | ||
); | ||
|
||
info("Waiting for request and response headers"); | ||
await waitForRequestData(store, ["requestHeaders", "responseHeaders"]); | ||
|
||
const headerLink = document.querySelector(".objectBox-string .url"); | ||
const expectedURL = | ||
"http://example.com/browser/devtools/client/netmonitor/test/html_json-long-test-page.html"; | ||
const onTabOpen = BrowserTestUtils.waitForNewTab(gBrowser, expectedURL, true); | ||
|
||
info("Click on a first link in Headers panel"); | ||
headerLink.click(); | ||
await onTabOpen; | ||
|
||
ok(onTabOpen, "New tab opened from link"); | ||
|
||
return teardown(monitor); | ||
}); |