Title: [121859] trunk/Source/WebCore
Revision
121859
Author
[email protected]
Date
2012-07-04 08:36:28 -0700 (Wed, 04 Jul 2012)

Log Message

Web Inspector: fix search on the network panel.
https://bugs.webkit.org/show_bug.cgi?id=90557

Reviewed by Vsevolod Vlasov.

* inspector/front-end/NetworkPanel.js:
(WebInspector.NetworkLogView.prototype._highlightNthMatchedRequest):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121858 => 121859)


--- trunk/Source/WebCore/ChangeLog	2012-07-04 15:31:53 UTC (rev 121858)
+++ trunk/Source/WebCore/ChangeLog	2012-07-04 15:36:28 UTC (rev 121859)
@@ -1,3 +1,13 @@
+2012-07-04  Pavel Feldman  <[email protected]>
+
+        Web Inspector: fix search on the network panel.
+        https://bugs.webkit.org/show_bug.cgi?id=90557
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/NetworkPanel.js:
+        (WebInspector.NetworkLogView.prototype._highlightNthMatchedRequest):
+
 2012-07-04  Kwang Yul Seo  <[email protected]>
 
         Stop tracking line number in tokenizer

Modified: trunk/Source/WebCore/inspector/front-end/NetworkPanel.js (121858 => 121859)


--- trunk/Source/WebCore/inspector/front-end/NetworkPanel.js	2012-07-04 15:31:53 UTC (rev 121858)
+++ trunk/Source/WebCore/inspector/front-end/NetworkPanel.js	2012-07-04 15:36:28 UTC (rev 121859)
@@ -1135,7 +1135,7 @@
             this._highlightedSubstringChanges = node._highlightMatchedSubstring(this._searchRegExp);
             if (reveal)
                 node.reveal();
-            this._currentMatcRequestrceIndex = matchedRequestIndex;
+            this._currentMatchedRequestIndex = matchedRequestIndex;
         }
         this.dispatchEventToListeners(WebInspector.NetworkLogView.EventTypes.SearchIndexUpdated, this._currentMatchedRequestIndex);
     },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to