WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
[patch]
A patch to use ctrl+alt as mac accesskey modifiers
keys (text/plain), 1.12 KB, created by
Avi Drissman
on 2009-03-05 14:41:32 PST
(
hide
)
Description:
A patch to use ctrl+alt as mac accesskey modifiers
Filename:
MIME Type:
Creator:
Avi Drissman
Created:
2009-03-05 14:41:32 PST
Size:
1.12 KB
patch
obsolete
>Index: WebCore/ChangeLog >=================================================================== >--- WebCore/ChangeLog (revision 41460) >+++ WebCore/ChangeLog (working copy) >@@ -1,3 +1,10 @@ >+2009-03-05 Avi Drissman <avi@chromium.org> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * page/chromium/EventHandlerChromium.cpp: >+ (WebCore::EventHandler::accessKeyModifiers): Share access key modifiers with Mac Safari when building for the Mac. >+ > 2009-03-05 Steve Falkenburg <sfalken@apple.com> > > <rdar://problem/6651112> Safari asks about re-posting a form even when page is cached >Index: WebCore/page/chromium/EventHandlerChromium.cpp >=================================================================== >--- WebCore/page/chromium/EventHandlerChromium.cpp (revision 41458) >+++ WebCore/page/chromium/EventHandlerChromium.cpp (working copy) >@@ -148,7 +148,11 @@ bool EventHandler::passWidgetMouseDownEv > > unsigned EventHandler::accessKeyModifiers() > { >+#if PLATFORM(DARWIN) >+ return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey; >+#else > return PlatformKeyboardEvent::AltKey; >+#endif > } > > } // namespace WebCore
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
fishd
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 24404
: 28328