mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 859308 - Hide Blocked in Timings tab until we know what that's doing, r=rcampbell
This commit is contained in:
parent
0551ebb9c8
commit
723d0f8e44
@ -540,7 +540,8 @@ create({ constructor: RequestsMenuView, proto: MenuContainer.prototype }, {
|
||||
*/
|
||||
_createWaterfallView: function NVRM__createWaterfallView(aItem, aTimings) {
|
||||
let { target, attachment } = aItem;
|
||||
let sections = ["blocked", "dns", "connect", "send", "wait", "receive"];
|
||||
let sections = ["dns", "connect", "send", "wait", "receive"];
|
||||
// Skipping "blocked" because it doesn't work yet.
|
||||
|
||||
let timingsNode = $(".requests-menu-timings", target);
|
||||
let startCapNode = $(".requests-menu-timings-cap.start", timingsNode);
|
||||
|
@ -7,6 +7,10 @@
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#timings-summary-blocked {
|
||||
display: none; /* This doesn't work yet. */
|
||||
}
|
||||
|
||||
/* Responsive sidebar */
|
||||
@media (max-width: 700px) {
|
||||
#details-pane-toggle,
|
||||
|
Loading…
Reference in New Issue
Block a user