Closed Bug 196480 Opened 21 years ago Closed 19 years ago

window.onmove does not fire

Categories

(Core :: DOM: UI Events & Focus Handling, defect)

x86
FreeBSD
defect
Not set
normal

Tracking

()

RESOLVED DUPLICATE of bug 66733

People

(Reporter: roman, Unassigned)

Details

User-Agent:       Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3a) Gecko/20030211 Phoenix/0.5
Build Identifier: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3a) Gecko/20030211 Phoenix/0.5

looks like window.onmove is not triggered when it should. the alert box never
shows up:

function openWin()
{
    var myWin;
    myWin=window.open("","displayWindow","width=400,height=200");
    myWin.document.write('Move this window');
    myWin.captureEvents(Event.MOVE);
    myWin.onmove=handleIt;
    myWin.onresize=handleIt;
}

function handleIt(e)
{
    alert("event type: " + e.type);
    this.focus();
}

openWin();


Reproducible: Always

Steps to Reproduce:
With the checkin to bug 226416, I suspect this is now fixed.
Roman: Is this still a problem with a current Mozilla build?
Assignee: saari → events
QA Contact: desale → ian

*** This bug has been marked as a duplicate of 66733 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
Component: Event Handling → User events and focus handling
You need to log in before you can comment on or make changes to this bug.