Changeset 143438 in webkit


Ignore:
Timestamp:
Feb 20, 2013 1:24:00 AM (11 years ago)
Author:
vsevik@chromium.org
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r143437 r143438  
     12013-02-20  Vsevolod Vlasov  <vsevik@chromium.org>
     2
     3        Web Inspector: [Regression] Search in ProfilesPanel is broken
     4        https://bugs.webkit.org/show_bug.cgi?id=110312
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * inspector/front-end/CPUProfileView.js:
     9        (WebInspector.CPUProfileView.prototype.matchesQuery):
     10        (WebInspector.CPUProfileView.prototype.performSearch):
     11
    1122013-02-20  Eugene Klyuchnikov  <eustas@chromium.org>
    213
  • trunk/Source/WebCore/inspector/front-end/CPUProfileView.js

    r142976 r143438  
    296296            }
    297297
    298             if (profileDataGridNode.functionName.match(matcher) || profileDataGridNode.url.match(matcher))
     298            if (profileDataGridNode.functionName.match(matcher) || (profileDataGridNode.url && profileDataGridNode.url.match(matcher)))
    299299                profileDataGridNode._searchMatchedFunctionColumn = true;
    300300
Note: See TracChangeset for help on using the changeset viewer.