Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js |
| index d6e750235a1f50e84fef75bf159d44e74f8cff35..a6defdf765d380f487ea84609bdde208dc75c77b 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js |
| @@ -1081,6 +1081,7 @@ WebInspector.TabbedPaneTab.prototype = { |
| tabElement.classList.add("measuring"); |
| } else { |
| tabElement.addEventListener("click", this._tabClicked.bind(this), false); |
| + tabElement.addEventListener("auxclick", this._tabClicked.bind(this), false); |
|
dgozman
2016/08/03 20:54:28
I took a closer look, and now I think that we can
Navid Zolghadr
2016/08/03 21:35:20
Awesome. Then I will get rid of that polyfill.
Reg
dgozman
2016/08/03 22:31:49
Thanks for explanation.
|
| tabElement.addEventListener("mousedown", this._tabMouseDown.bind(this), false); |
| tabElement.addEventListener("mouseup", this._tabMouseUp.bind(this), false); |