[webkit-reviews] review denied: [Bug 93090] Web Inspector: requests filtering in network tab : [Attachment 156696] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 6 08:52:41 PDT 2012


Vsevolod Vlasov <vsevik at chromium.org> has denied Pavel Chadnov
<chadnov at google.com>'s request for review:
Bug 93090: Web Inspector: requests filtering in network tab
https://bugs.webkit.org/show_bug.cgi?id=93090

Attachment 156696: Patch
https://bugs.webkit.org/attachment.cgi?id=156696&action=review

------- Additional Comments from Vsevolod Vlasov <vsevik at chromium.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=156696&action=review


> Source/WebCore/ChangeLog:11
> +	   No new tests (OOPS!).

Please remove this line (and 1 blank line).

> Source/WebCore/inspector/front-end/FilterController.js:50
> +    cancelFilter: function() {

Here and everywhere: we put open bracket { to the next line after the function
name.

> Source/WebCore/inspector/front-end/FilterController.js:60
> +    _performFilter: function(query) {

Please add compiler annotations to this function.

> Source/WebCore/inspector/front-end/NetworkPanel.js:443
> +	   for(var i = 0; i < this._dataGrid.rootNode().children.length; ++i){

Please add space after for and a space before bracket.

> Source/WebCore/inspector/front-end/NetworkPanel.js:447
> +	       if (node.element.children[0].innerText.indexOf(content) === -1){


Please use createPlainTextSearchRegex like it is done in performSearch.
Also a space before bracket please.

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

Please add compiler annotations to this function.

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

Please add compiler annotations to this function.


More information about the webkit-reviews mailing list