[Webkit-unassigned] [Bug 24129] New: dropdown list doesn't open

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 24 11:22:32 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=24129

           Summary: dropdown list doesn't open
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://www.emule-island.com/
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jasneet at chromium.org
                CC: jasneet at chromium.org


I Steps:
Go to http://www.emule-island.com/

II Issue : 
In right column, Dropdown for Films is not working. On clicking dropdown arrow,
doesn't show dropdown list

III Conclusion:
In the javascript, they are setting the <div>s with className "menuItem" with
the following: 
     alldiv[i].onmousedown = selectMenuItem;

in which selectMenuItem  is a function defined as: 
function selectMenuItem(e) {
        if(document.all)e = event;
        if (e.target) source = e.target; 
                                else if (e.srcElement) source = e.srcElement;
                        if (source.nodeType == 3) // defeat Safari bug
                                source = source.parentNode;

        return false;
}

This is causing the issue in webkit. 

IV Other Browsers:
FF3: OK
IE7: OK 

V Nightly tested: 41018

Bug in Chromium : http://code.google.com/p/chromium/issues/detail?id=6932


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list