| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| index b83f1d7bdafa605e3a2b8e5b1cc720142d84d844..d5c67d7d311cc1c491c1c1b453164ef68db1a81b 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -352,7 +352,8 @@ WebInspector.ConsoleViewMessage.prototype = {
|
| */
|
| function toggleStackTrace(event)
|
| {
|
| - if (event.target.hasSelection())
|
| + var linkClicked = event.target && event.target.enclosingNodeOrSelfWithNodeName('a');
|
| + if (event.target.hasSelection() || linkClicked)
|
| return;
|
| expandStackTrace(stackTraceElement.classList.contains("hidden"));
|
| event.consume();
|
|
|