| Index: Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| diff --git a/Source/devtools/front_end/sources/CallStackSidebarPane.js b/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| index 73ffdf6587a8eefb7eb9215d4a9f0deb4181097f..717277dd5c322688b830e8a74c1a52dfaa57d704 100644
|
| --- a/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| +++ b/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| @@ -114,7 +114,7 @@ WebInspector.CallStackSidebarPane.prototype = {
|
| this.placards.push(placard);
|
| this.bodyElement.appendChild(placard.element);
|
|
|
| - if (callFrame.script.isFramework()) {
|
| + if (WebInspector.BlackboxSupport.isBlackboxedURL(callFrame.script.sourceURL)) {
|
| placard.setHidden(true);
|
| placard.element.classList.add("dimmed");
|
| ++this._hiddenPlacards;
|
| @@ -186,8 +186,6 @@ WebInspector.CallStackSidebarPane.prototype = {
|
| */
|
| appendBlackboxURLContextMenuItems: function(contextMenu, url)
|
| {
|
| - if (!WebInspector.experimentsSettings.frameworksDebuggingSupport.isEnabled())
|
| - return;
|
| if (!url)
|
| return;
|
| var blackboxed = WebInspector.BlackboxSupport.isBlackboxedURL(url);
|
|
|