| Index: third_party/WebKit/Source/devtools/front_end/sources/OpenFileQuickOpen.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/OpenFileQuickOpen.js b/third_party/WebKit/Source/devtools/front_end/sources/OpenFileQuickOpen.js
|
| index 0dc5924beda080eba2a369f900e9156e454d41b7..b2500fe92eca4a659a20393318f89fcf70a6f5be 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/OpenFileQuickOpen.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/OpenFileQuickOpen.js
|
| @@ -24,7 +24,10 @@ Sources.OpenFileQuickOpen = class extends Sources.FilteredUISourceCodeListProvid
|
|
|
| if (!uiSourceCode)
|
| return;
|
| - Common.Revealer.reveal(uiSourceCode.uiLocation((lineNumber || 0), columnNumber));
|
| + if (typeof lineNumber === 'number')
|
| + Common.Revealer.reveal(uiSourceCode.uiLocation(lineNumber, columnNumber));
|
| + else
|
| + Common.Revealer.reveal(uiSourceCode);
|
| }
|
|
|
| /**
|
|
|