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)
Tracking
()
RESOLVED
DUPLICATE
of bug 936092
People
(Reporter: martin.sulak, Unassigned)
Details
Attachments
(1 file)
574 bytes,
text/html
|
Details |
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.
Reporter | ||
Comment 1•10 years ago
|
||
I forgot to mention: drag was not even started.
Comment 2•10 years ago
|
||
Does it work if you disable E10S? (Preferences->General)
Updated•10 years ago
|
Flags: needinfo?(martin.sulak)
Reporter | ||
Comment 3•10 years ago
|
||
Yes, disabling E10S solved the problem. All events are firing now.
Flags: needinfo?(martin.sulak)
Updated•10 years ago
|
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.
Description
•