Open
Bug 50582
Opened 24 years ago
Updated 2 years ago
window.ondragdrop not cancellable with return false (NN4 compatibility)
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P3)
Tracking
()
NEW
Future
People
(Reporter: martin.honnen, Unassigned)
Details
Attachments
(1 file)
With NN4 you can cancel the loading of a dropped link by returning false in the
ondragdrop handler. This doesn't work in M17 (checked on windows 95) but should
otherwise the ondragdrop handler is not compatible to NN4.
Reporter | ||
Comment 1•24 years ago
|
||
This bug has been marked "future" because the original netscape engineer working
on this is over-burdened. If you feel this is an error, that you or another
known resource will be working on this bug,or if it blocks your work in some way
-- please attach your concern to the bug for reconsideration.
Comment 5•24 years ago
|
||
Reassigning QA Contact for all open and unverified bugs previously under Lorca's
care to Gerardo as per phone conversation this morning.
QA Contact: lorca → gerardok
Updated•23 years ago
|
QA Contact: madhur → rakeshmishra
Updated•22 years ago
|
QA Contact: rakeshmishra → trix
OnDragDrop event is useful and necessary. It should be implemented for 1.4.
Comment 9•19 years ago
|
||
Currently the event isn't fired at all (the alert doesn't show), so this bug could be marked as a dup of bug 112288
Comment 10•19 years ago
|
||
See http://developer.mozilla.org/en/docs/DOM:window.ondragdrop - you can use e.stopPropagation() to cancel the loading:
window.addEventListener("dragdrop", testfunc, false);
function testfunc(event) {
alert("dragdrop!");
event.stopPropagation();
}
Updated•15 years ago
|
Assignee: saari → nobody
QA Contact: ian → events
Assignee | ||
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•