Skip to content

Commit

Permalink
Bug 1656852 click on a link in Network Headers Panel r=Honza,bomsy
Browse files Browse the repository at this point in the history
  • Loading branch information
angelinasentyakova committed Feb 3, 2022
1 parent 4c162ca commit 75ecedf
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ loader.lazyRequireGetter(
"devtools/client/shared/components/menu/utils",
true
);
loader.lazyRequireGetter(
this,
"openContentLink",
"devtools/client/shared/link",
true
);

const { div, input, label, span, textarea, tr, td, button } = dom;

Expand Down Expand Up @@ -455,6 +461,7 @@ class HeadersPanel extends Component {
member: Object.assign({}, member, { open: false }),
mode: MODE.TINY,
noGrip: true,
openLink: openContentLink,
})
),
headerDocURL ? MDNLink({ url: headerDocURL }) : null
Expand Down
1 change: 1 addition & 0 deletions devtools/client/netmonitor/test/browser.ini
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ skip-if = verify # Bug 1607678
[browser_net_decode-params.js]
[browser_net_headers-alignment.js]
[browser_net_headers_filter.js]
[browser_net_headers-link_clickable.js]
[browser_net_headers_sorted.js]
[browser_net_headers-resize.js]
[browser_net_image-tooltip.js]
Expand Down
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);
});

0 comments on commit 75ecedf

Please sign in to comment.