Title: [143438] trunk/Source/WebCore
Revision
143438
Author
[email protected]
Date
2013-02-20 01:24:00 -0800 (Wed, 20 Feb 2013)

Log Message

Web Inspector: [Regression] Search in ProfilesPanel is broken
https://bugs.webkit.org/show_bug.cgi?id=110312

Reviewed by Pavel Feldman.

* inspector/front-end/CPUProfileView.js:
(WebInspector.CPUProfileView.prototype.matchesQuery):
(WebInspector.CPUProfileView.prototype.performSearch):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143437 => 143438)


--- trunk/Source/WebCore/ChangeLog	2013-02-20 09:21:09 UTC (rev 143437)
+++ trunk/Source/WebCore/ChangeLog	2013-02-20 09:24:00 UTC (rev 143438)
@@ -1,3 +1,14 @@
+2013-02-20  Vsevolod Vlasov  <[email protected]>
+
+        Web Inspector: [Regression] Search in ProfilesPanel is broken
+        https://bugs.webkit.org/show_bug.cgi?id=110312
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/CPUProfileView.js:
+        (WebInspector.CPUProfileView.prototype.matchesQuery):
+        (WebInspector.CPUProfileView.prototype.performSearch):
+
 2013-02-20  Eugene Klyuchnikov  <[email protected]>
 
         Web Inspector: View.markAsRoot should never be invoked on attached view.

Modified: trunk/Source/WebCore/inspector/front-end/CPUProfileView.js (143437 => 143438)


--- trunk/Source/WebCore/inspector/front-end/CPUProfileView.js	2013-02-20 09:21:09 UTC (rev 143437)
+++ trunk/Source/WebCore/inspector/front-end/CPUProfileView.js	2013-02-20 09:24:00 UTC (rev 143438)
@@ -295,7 +295,7 @@
                     profileDataGridNode._searchMatchedCallsColumn = true;
             }
 
-            if (profileDataGridNode.functionName.match(matcher) || profileDataGridNode.url.match(matcher))
+            if (profileDataGridNode.functionName.match(matcher) || (profileDataGridNode.url && profileDataGridNode.url.match(matcher)))
                 profileDataGridNode._searchMatchedFunctionColumn = true;
 
             if (profileDataGridNode._searchMatchedSelfColumn ||
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to