Updates:
        Summary: dropdown list doesn't open
        Labels: -NeedsReduction Has-Reduction Report-to-Webkit

Comment #2 on issue 6932 by aoca...@chromium.org: dropdown list doesn't open
http://code.google.com/p/chromium/issues/detail?id=6932

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.

Reduced testcase can be found at: (or see attached file)
http://go/reductions/6932/test_standard.html


Attachments:
        test_standard.html  1.0 KB

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to