RESOLVED FIXED 137382
AX: Going back is broken for VoiceOver
https://bugs.webkit.org/show_bug.cgi?id=137382
Summary AX: Going back is broken for VoiceOver
chris fleizach
Reported 2014-10-02 23:29:13 PDT
Using VoiceOver, do the following, and you won't be able to interact with the HTML content at all: 1) Open Safari with VoiceOver enabled. 2) Command-l, search for apple wikipedia. 3) Use VO-right arrow to navigate to the HTML content if not already interacting, press VO-Shift-down arrow to interact. 4) Press VO-Command-h to move through headings until finding the first search result. It will be Apple's wikipedia page. 5) Press VO-space to activate the link. The header only contains a single link, so this is expected. 6) Use VO-Command-h to move through headings, move through several sections. Use VO-right and left to explore the plain text of one of the sections. 7) Press COmmand-[ (left bracket) to go back a page. 8) If still interacting with HTML, try VO-left and right. 9) If not, or if nothing works, stop interacting with VO-Shift-up and then VO-Shift-down to try interacting again. <rdar://problem/18199992>
Attachments
patch (4.04 KB, patch)
2014-10-02 23:32 PDT, chris fleizach
no flags
New patch (8.95 KB, patch)
2014-10-13 17:22 PDT, chris fleizach
buildbot: commit-queue-
Archive of layout-test-results from webkit-ews-10 for mac-mountainlion-wk2 (645.40 KB, application/zip)
2014-10-13 18:58 PDT, Build Bot
no flags
Archive of layout-test-results from webkit-ews-07 for mac-mountainlion (609.47 KB, application/zip)
2014-10-13 19:08 PDT, Build Bot
no flags
patch (8.09 KB, patch)
2014-10-14 22:42 PDT, chris fleizach
darin: review+
chris fleizach
Comment 1 2014-10-02 23:32:11 PDT
Mario Sanchez Prada
Comment 2 2014-10-05 10:29:50 PDT
Comment on attachment 239181 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=239181&action=review > Source/WebCore/dom/Document.cpp:2407 > + if (loadingFinished && !doload) > + processAccessibilityLoadNotification(); Would it work if you just do "if (loadingFinished) processAccessibilityLoadNotification();", and remove the call to processAccessibilityLoadNotification() below?
chris fleizach
Comment 3 2014-10-05 15:43:49 PDT
(In reply to comment #2) > (From update of attachment 239181 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=239181&action=review > > > Source/WebCore/dom/Document.cpp:2407 > > + if (loadingFinished && !doload) > > + processAccessibilityLoadNotification(); > > Would it work if you just do "if (loadingFinished) processAccessibilityLoadNotification();", and remove the call to processAccessibilityLoadNotification() below? I think it might. I need to double check first. Thanks
James Craig
Comment 4 2014-10-06 12:14:15 PDT
Repro is more consistent if you select "View > Show Tab Bar"
chris fleizach
Comment 5 2014-10-13 17:22:04 PDT
Created attachment 239762 [details] New patch Further investigation uncovered more serious problems 1) I was still missing load notifications for some subset or pages in the history cache. Luckily there's already an existing mechanism that tracks frame loads 2) The scroll view sometimes cached its children too long. So we should get rid of that caching. I think there's little performance penalty to putting the same 3 elements back in, and we won't have to worry about caching the wrong elements
Build Bot
Comment 6 2014-10-13 18:58:04 PDT
Comment on attachment 239762 [details] New patch Attachment 239762 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/5945514394648576 New failing tests: accessibility/loading-iframe-sends-notification.html
Build Bot
Comment 7 2014-10-13 18:58:08 PDT
Created attachment 239770 [details] Archive of layout-test-results from webkit-ews-10 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-10 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Build Bot
Comment 8 2014-10-13 19:08:05 PDT
Comment on attachment 239762 [details] New patch Attachment 239762 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/4851444490436608 New failing tests: accessibility/loading-iframe-sends-notification.html
Build Bot
Comment 9 2014-10-13 19:08:14 PDT
Created attachment 239773 [details] Archive of layout-test-results from webkit-ews-07 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-07 Port: mac-mountainlion Platform: Mac OS X 10.8.5
chris fleizach
Comment 10 2014-10-14 22:42:19 PDT
chris fleizach
Comment 11 2014-10-15 12:35:43 PDT
Note You need to log in before you can comment on or make changes to this bug.