[Webkit-unassigned] [Bug 93090] Web Inspector: requests filtering in network tab

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 7 06:10:51 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=93090





--- Comment #16 from Vsevolod Vlasov <vsevik at chromium.org>  2012-08-07 06:10:47 PST ---
(From update of attachment 156920)
View in context: https://bugs.webkit.org/attachment.cgi?id=156920&action=review

> Source/WebCore/inspector/front-end/NetworkPanel.js:1169
> +            node.element.removeStyleClass("filtered-out");

I'd move this below:

if (node._request.displayName.match(filterRegExp)) 
    node.element.removeStyleClass("filtered-out");
else {
    node.element.addStyleClass("filtered-out");
    this._filteredOutRequests.put(this._requests[i], true);
}

> Source/WebCore/inspector/front-end/NetworkPanel.js:1445
> +    performFilter: function(query){

Annotations are still missing.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list