Comment #2 on issue 5634 by m0.interactive: Left click selects a drop down list item, when it shouldn't http://code.google.com/p/chromium/issues/detail?id=5634
You meant, "Right click selects a drop down list item, when it shouldn't" unless your left handed :p BTW, the reason why this is happening is because WebWidgetImpl handles the mouse input events and passes it to WebCore PopUp Container, and doesn't do any checks for which button has been clicked. Therefore, any mouse button would have allowed the selection of the list. What I did, I just intercepted the mouse when released (inside that popup) and just checked for LeftMouse. Now the problem is the following: Will JavaScript code still work? How about left handed people? Patch: http://codereview.chromium.org/15040 -- 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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Chromium-bugs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/chromium-bugs?hl=en -~----------~----~----~----~------~----~------~--~---
