[Webkit-unassigned] [Bug 45061] [chromium] fast/forms/focus2.html fails
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Aug 6 18:19:50 PDT 2012
https://bugs.webkit.org/show_bug.cgi?id=45061
--- Comment #8 from yosin at chromium.org 2012-08-06 18:19:49 PST ---
To make Option+Tab (Alt+Tab) to set focus on anchor if preferences sets tabs-to-link as false, it seems we can add PLATFORM(CHROMIUM) && OS(MAC) to EventHandler::eventInvertsTabsToLinksClientCallResult[1].
bool EventHandler::eventInvertsTabsToLinksClientCallResult(KeyboardEvent* event)
{
#if PLATFORM(MAC) || PLATFORM(QT) || PLATFORM(EFL)
return EventHandler::isKeyboardOptionTab(event);
#else
return false;
#endif
}
This function is called by EventHandler::tabsToLinks.
[1] http://trac.webkit.org/browser/trunk/Source/WebCore/page/EventHandler.cpp#L3308
--
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