| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
|
| index eab5984143f7208a72267d25fce6f80bbcd81dea..dc0b9860a795124ffcef9cfbd5f1caba1ecf58b5 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
|
| @@ -95,7 +95,7 @@ Network.NetworkLogViewColumns = class {
|
| this._dataGrid =
|
| new UI.SortableDataGrid(this._columns.map(Network.NetworkLogViewColumns._convertToDataGridDescriptor));
|
| this._dataGrid.element.addEventListener('mousedown', event => {
|
| - if ((!this._dataGrid.selectedNode && event.button) || event.target.enclosingNodeOrSelfWithNodeName('a'))
|
| + if (!this._dataGrid.selectedNode && event.button)
|
| event.consume();
|
| }, true);
|
|
|
|
|