Closed
Bug 4163
Opened 26 years ago
Closed 25 years ago
DragDrop Event on window does not work.
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P2)
Tracking
()
VERIFIED
FIXED
M16
People
(Reporter: desale, Assigned: joki)
Details
(Whiteboard: [MAKINGTEST] vrjanice@yahoo.com)
DragDrop Event on window does not work.
Providing information to simulate the problem.
Product: Seamonkey.[apprunner as well as viewer]
Build Date: 03/22/99
Platform: PC [Windows-95]
Steps to Reproduce:
1] Please copy the code I'm providing. Save as HTML file.
2] Open this HTML file in apprunner as well as viewer.
3] Then try to drag and drop any file [html or gif or jpg or any other file
which browser will understand.] on the browser.
4] If it browser loads the file then hit back button to go to previous page to
see result in Result Text Box whether event is occuring properly or not.
Code:
<HTML>
<HEAD><TITLE>DragDrop Event</TITLE></HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
function report(text)
{
var value=document.workform.result.value;
var msg= value+ " " +text;
document.workform.result.value=msg;
}
function dragHandle(e){
//alert("you dropped the file, now I'll show it");
report('DragDrop()');
}
window.ondragdrop=dragHandle;
</SCRIPT>
<H3>Please Drop file here!</H3>
<form name="workform">
Result Text Box:<INPUT TYPE=text name="result" size=80><br><br>
<input type="reset" value="Reset">
</form>
</BODY>
</HTML>
Expected Results: After dropping file on browser window, it is supposed load the
dropped file, and it is supposed to show result in result text box that DragDrop
event is occured.
Actual Results: Neither browser loads the dropped file nor it shows any result
in Result Text Box.
Reporter | ||
Updated•26 years ago
|
Target Milestone: M3
Reporter | ||
Comment 1•26 years ago
|
||
Target is M3 per request.
Reporter | ||
Updated•26 years ago
|
Priority: P3 → P2
Reporter | ||
Updated•26 years ago
|
QA Contact: 3847 → 4616
This bug is on M3 milestone which has passed. Putting on Blank milestone to be
reassigned to a current or future milestone.
Assignee | ||
Updated•26 years ago
|
Target Milestone: M11
Assignee | ||
Comment 3•26 years ago
|
||
Actually this may belong to rods these days. Rod? Any chance one of your new
drag events either is the same as this or can be aliased to this one from 4.0?
Updated•25 years ago
|
Target Milestone: M11 → M14
Comment 4•25 years ago
|
||
Don't care who's bug this is, but drag and drop is pushed out post beta, so I'm
moving this to M14
Updated•25 years ago
|
Whiteboard: MAKINGTEST vrjanice@yahoo.com → [MAKINGTEST] vrjanice@yahoo.com
Comment 5•25 years ago
|
||
Adding brackets to [MAKINGTEST]. Please always use square brackets for
consistency. Thanks!
Comment 6•25 years ago
|
||
Bulk moving old [makingtest] code to new makingtest keyword. Sorry for the spam!
Keywords: makingtest
Assignee | ||
Comment 7•25 years ago
|
||
Well though this would be relatively easy to add it'll never get a PDT+ rating.
Moving to M15.
Target Milestone: M14 → M15
Assignee | ||
Comment 8•25 years ago
|
||
Mass-moving bugs out of M15 that I won't get to. Will refit individual
milestones after moving them.
Target Milestone: M15 → M16
Assignee | ||
Comment 9•25 years ago
|
||
Fixed.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
You need to log in
before you can comment on or make changes to this bug.
Description
•