| 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 781209df993fc52c92894440133eb93d773a0e10..b6fb410d84a565e30c648b24450a9ef422449abf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js
|
| @@ -328,7 +328,8 @@ WebInspector.ConsoleViewMessage = class {
|
| * @param {?Event} event
|
| */
|
| 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();
|
|
|