Index: Source/WebCore/inspector/front-end/CPUProfileView.js |
=================================================================== |
--- Source/WebCore/inspector/front-end/CPUProfileView.js (revision 145087) |
+++ Source/WebCore/inspector/front-end/CPUProfileView.js (working copy) |
@@ -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 || |