Open
Bug 1342001
Opened 8 years ago
Updated 3 years ago
Double click is received in multi-e10s
Categories
(Firefox :: Tabbed Browser, defect)
Firefox
Tabbed Browser
Tracking
()
NEW
People
(Reporter: baku, Unassigned)
Details
./browser/base/content/content.js:
ClickEventHandler.handleEvent() is called twice in container addon when the tabs are moved to a separate window.
I'm trying to reproduce this issue just with firefox nightly, but so far, the STR is:
1. having container addon installed: https://github.com/mozilla/testpilot-containers
2. open a container tab with a wikipedia page (or any other website, of course)
3. use the container addon to move the container tab in a separate window
4. do a middle-click (on linux, I don't know on mac/window) on a link
-> the link is opened twice.
What container addon does when moving tabs in a separate window is just:
// list is an array of tab (XULELements - tabbrowser...).
for (let tab of list) {
newBrowserWindow.gBrowser.adoptTab(tab, pos++, false);
}
| Reporter | ||
Updated•8 years ago
|
Flags: needinfo?(gijskruitbosch+bugs)
Comment 1•8 years ago
|
||
Is this a DOM issue or some browser issue? Like, are there unexpected DOM events dispatched?
| Reporter | ||
Comment 2•8 years ago
|
||
it seems a browser issue. no DOM involved here.
Updated•8 years ago
|
Component: DOM → Tabbed Browser
Product: Core → Firefox
Comment 3•8 years ago
|
||
I don't have time to investigate this. It sounds like the container add-on is doing something strange if this doesn't reproduce when using 'move tab to new window' normally.
Flags: needinfo?(gijskruitbosch+bugs)
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•