Bug 859308 - Hide Blocked in Timings tab until we know what that's doing, r=rcampbell

This commit is contained in:
Victor Porof 2013-04-18 09:35:27 +03:00
parent 0551ebb9c8
commit 723d0f8e44
2 changed files with 6 additions and 1 deletions

View File

@ -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);

View File

@ -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,