Index: LayoutTests/http/tests/inspector/debugger-test.js |
diff --git a/LayoutTests/http/tests/inspector/debugger-test.js b/LayoutTests/http/tests/inspector/debugger-test.js |
index 1971d96db13dffdc59aedc47cd86e4e113a736b4..0f2d55a42464c530600fe2d0de18117784a1f9fc 100644 |
--- a/LayoutTests/http/tests/inspector/debugger-test.js |
+++ b/LayoutTests/http/tests/inspector/debugger-test.js |
@@ -220,7 +220,7 @@ InspectorTest.captureStackTraceIntoString = function(callFrames, asyncStackTrace |
for (var i = 0; i < callFrames.length; i++) { |
var frame = callFrames[i]; |
var script = WebInspector.debuggerModel.scriptForId(frame.location().scriptId); |
- var isFramework = script.isFramework(); |
+ var isFramework = WebInspector.BlackboxSupport.isBlackboxedURL(script.sourceURL); |
if (options.dropFrameworkCallFrames && isFramework) |
continue; |
var url; |