RESOLVED FIXED 55959
REGRESSION (WebKit2): VoiceOver focus no longer follows keyboard focus
https://bugs.webkit.org/show_bug.cgi?id=55959
Summary REGRESSION (WebKit2): VoiceOver focus no longer follows keyboard focus
chris fleizach
Reported 2011-03-08 12:12:44 PST
When focus changes, VoiceOver does not follow in WK2
Attachments
patch (8.72 KB, patch)
2011-03-08 14:57 PST, chris fleizach
no flags
patch (9.17 KB, patch)
2011-03-08 17:40 PST, chris fleizach
no flags
patch (8.72 KB, patch)
2011-03-08 17:41 PST, chris fleizach
no flags
patch (9.18 KB, patch)
2011-03-09 11:39 PST, chris fleizach
no flags
patch (9.21 KB, patch)
2011-03-09 15:53 PST, chris fleizach
darin: review-
patch (6.38 KB, patch)
2011-03-10 16:17 PST, chris fleizach
darin: review+
chris fleizach
Comment 1 2011-03-08 14:57:59 PST
chris fleizach
Comment 2 2011-03-08 17:40:53 PST
Created attachment 85116 [details] patch first patch didn't svn apply
chris fleizach
Comment 3 2011-03-08 17:41:52 PST
chris fleizach
Comment 4 2011-03-09 11:39:55 PST
Build Bot
Comment 5 2011-03-09 12:07:40 PST
Early Warning System Bot
Comment 6 2011-03-09 12:22:12 PST
chris fleizach
Comment 7 2011-03-09 15:53:25 PST
Darin Adler
Comment 8 2011-03-10 11:49:29 PST
Comment on attachment 85250 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=85250&action=review > Source/WebKit2/WebProcess/WebProcess.cpp:465 > +#if PLATFORM(MAC) > + Vector<RefPtr<WebPage> > pages; > + copyValuesToVector(m_pageMap, pages); > + for (size_t i = 0; i < pages.size(); ++i) > + if (pages[i]->windowIsFocused()) > + return pages[i].get(); > +#endif > + return 0; Is always zero correct for non-Mac platforms? Or is this just not implemented for those platforms? Can’t we just compile this function on all platforms? If we are having some problem compiling it on some of those other platforms where it’s also not called, we could just put the #if around the entire function definition instead, which I think would be clearer. Do we really need to copy the map to a vector? Why can’t we just iterate the map? Can the windowIsFocused function change the contents of the map? Need braces around the body of the for loop. > Source/WebKit2/WebProcess/mac/NSApplicationOverride.mm:32 > +@implementation NSApplication (NSApplicationOverride) Defining a category is not a reliable way to override the implementation of a method in an AppKit class even though it often seems to work. The reliable method involves method_setImplementation and is done in source files such as WebPluginController.mm, WebHTMLView.mm, and WebView.mm in WebKit. > Source/WebKit2/WebProcess/mac/NSApplicationOverride.mm:39 > + if (!WebKit::WebProcess::shared().isSeparateProcess()) It’s normally better to put using namespace WebKit at the start of a file rather than doing WebKit:: everywhere.
chris fleizach
Comment 9 2011-03-10 16:17:19 PST
chris fleizach
Comment 10 2011-03-10 16:40:37 PST
Note You need to log in before you can comment on or make changes to this bug.