Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
| index de2ac73fd12feaeb35d9cda3a8368b3dcaea8a35..86fd83ac9dd4e3ed4802260a5036b5e518e9ef3b 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js |
| @@ -1253,7 +1253,7 @@ Sources.JavaScriptSourceFrame = class extends SourceFrame.UISourceCodeFrame { |
| if (this._prettyPrintInfobar) |
| return; |
| - if (!TextUtils.isMinified(/** @type {string} */ (this._debuggerSourceCode.content()))) |
| + if (!TextUtils.isMinified(/** @type {string} */ (this.uiSourceCode().content()))) |
|
dgozman
2017/04/17 22:36:02
How could this make a difference though?
lushnikov
2017/04/17 23:06:13
this.uiSourceCode() is the one which was requested
|
| return; |
| this._prettyPrintInfobar = UI.Infobar.create( |