[Webkit-unassigned] [Bug 34285] [Gtk] Password field doesn't get input method
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Feb 15 20:11:49 PST 2010
https://bugs.webkit.org/show_bug.cgi?id=34285
Brian Tarricone <bjt23 at cornell.edu> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bjt23 at cornell.edu
--- Comment #4 from Brian Tarricone <bjt23 at cornell.edu> 2010-02-15 20:11:47 PST ---
Yes, changing that line does indeed fix it for the gtk port:
--- a/WebCore/html/HTMLInputElement.cpp
+++ b/WebCore/html/HTMLInputElement.cpp
@@ -523,7 +523,7 @@ void HTMLInputElement::aboutToUnload()
bool HTMLInputElement::shouldUseInputMethod() const
{
- return m_type == TEXT || m_type == SEARCH || m_type == ISINDEX;
+ return m_type == TEXT || m_type == SEARCH || m_type == ISINDEX || m_type
== PASSWORD;
}
void HTMLInputElement::handleFocusEvent()
--
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