[Webkit-unassigned] [Bug 22784] Home and End buttons do not do anything in drop down lists

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 10 13:54:21 PDT 2009


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





--- Comment #3 from Mark Rowe (bdash) <mrowe at apple.com>  2009-07-10 13:54:20 PDT ---
(From update of attachment 32577)
> Index: WebCore/dom/SelectElement.cpp
> ===================================================================
> --- WebCore/dom/SelectElement.cpp	(revision 45713)
> +++ WebCore/dom/SelectElement.cpp	(working copy)
> @@ -47,7 +47,9 @@
>  #include "WMLSelectElement.h"
>  #endif
>  
> -#if PLATFORM(MAC)
> +// On Mac (Safari or Chrome), pop up the menu if the user presses the arrow keys
> +// while a Select element has focus. On other platforms, just change the selection.
> +#if PLATFORM(DARWIN) && !PLATFORM(IPHONE)

This isn't the appropriate check.  PLATFORM(DARWIN) evaluates to true for any
port building on Mac OS X, including Qt, GTK and wx.  It indicates the presence
of the BSD-level functionality of Darwin, and says nothing about the behavior
of higher levels of the stack.

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


More information about the webkit-unassigned mailing list