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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests if selecting a tab in a tab bar makes it visible
*/
add_task(async function () {
Services.prefs.clearUserPref(
"devtools.netmonitor.panes-network-details-width"
);
const { tab, monitor } = await initNetMonitor(SIMPLE_URL, {
requestCount: 1,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const topMostDocument = DevToolsUtils.getTopWindow(
document.defaultView
).document;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
const networkEvent = waitForNetworkEvents(monitor, 1);
tab.linkedBrowser.reload();
await networkEvent;
store.dispatch(Actions.toggleNetworkDetails());
const splitter = document.querySelector(".splitter");
await EventUtils.synthesizeMouse(
splitter,
0,
1,
{ type: "mousedown" },
monitor.panelWin
);
await EventUtils.synthesizeMouse(
splitter,
300,
1,
{ type: "mousemove" },
monitor.panelWin
);
await EventUtils.synthesizeMouse(
splitter,
300,
1,
{ type: "mouseup" },
monitor.panelWin
);
await waitUntil(() => document.querySelector(".all-tabs-menu"));
const allTabsMenu = document.querySelector(".all-tabs-menu");
const panelsWidth = document.querySelector(".tabs-menu").offsetWidth;
const selectTabFromTabsMenuButton = async id => {
EventUtils.sendMouseEvent({ type: "click" }, allTabsMenu);
const tabMenuElement = topMostDocument.querySelector(
`#devtools-sidebar-${id}`
);
if (tabMenuElement != null) {
tabMenuElement.click();
// The tab should be visible within the panel
const tabLi = document.querySelector(`#${id}-tab`).parentElement;
const ulScrollPos =
tabLi.parentElement.scrollLeft + tabLi.parentElement.offsetLeft;
ok(
tabLi.offsetLeft >= ulScrollPos &&
tabLi.offsetLeft + tabLi.offsetWidth <= panelsWidth + ulScrollPos,
`The ${id} tab is visible`
);
}
};
for (const elem of [
"headers",
"cookies",
"request",
"response",
"timings",
"security",
]) {
await selectTabFromTabsMenuButton(elem);
}
await teardown(monitor);
});
|