Closed
Description
Consider this document:
<div onclick="w = window.open('http://example.com', 'foo'); w.opener= null">
Click me first
</div>
<div onclick="w = window.open('http://example.org', 'foo'); w.opener= null">
Click me second
</div>
I believe per spec clicking the first link then the second one should only open one window, since disowning the owner doesn't affect link targeting as far as I can tell.
In both Gecko and Blink, two windows are opened instead.
In Edge only one window is opened and the second click doesn't navigate it (no matter what I do with the opener) which seems a bit odd.