Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Unified Diff: LayoutTests/http/tests/inspector/debugger-test.js

Issue 444923002: DevTools: Blackboxing out of experiments. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-log-wrapped-in-framework.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | LayoutTests/inspector/console/console-log-wrapped-in-framework.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698