Closed Bug 1096002 Opened 10 years ago Closed 10 years ago

Drag and Drop events are not fired in Nightly 36, works fine in Firefox 33

Categories

(Core :: DOM: Copy & Paste and Drag & Drop, defect)

36 Branch
x86_64
Windows 7
defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 936092

People

(Reporter: martin.sulak, Unassigned)

Details

Attachments

(1 file)

Attached file dd.html
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0 Build ID: 20141105223254 Steps to reproduce: <!doctype html> <html> <head> <SCRIPT> function onOver(e) { e.stopPropagation(); e.preventDefault(); } function onDrop(e) { alert("dropped"); e.stopPropagation(); e.preventDefault(); } </SCRIPT> </head> <body> <div ondragover="onOver(event)" ondrop="onDrop(event)"" style="border:1px solid black"> <br><br><br><br><br><br> </div> <!-- from example at firefox site --> <div draggable="true" ondragstart="event.dataTransfer.setData('text/plain', 'This text may be dragged')"> This text <strong>may</strong> be dragged. </div> </body> </html> Actual results: alert showed up in FF33 and Chrome. Not in Nightly 36. Expected results: Nightly should behave as Firefox.
I forgot to mention: drag was not even started.
Does it work if you disable E10S? (Preferences->General)
Flags: needinfo?(martin.sulak)
Yes, disabling E10S solved the problem. All events are firing now.
Flags: needinfo?(martin.sulak)
Status: UNCONFIRMED → RESOLVED
Closed: 10 years ago
Resolution: --- → DUPLICATE
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: