Bug 141113 - AX: VoiceOver/Safari consistently hangs following skip link w/extra JavaScript
Summary: AX: VoiceOver/Safari consistently hangs following skip link w/extra JavaScript
Status: RESOLVED WORKSFORME
Alias: None
Product: WebKit
Classification: Unclassified
Component: Accessibility (show other bugs)
Version: 525.x (Safari 3.2)
Hardware: iPhone / iPad iOS 8.1
: P2 Major
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2015-01-31 02:11 PST by Patrick H. Lauke
Modified: 2022-02-11 14:55 PST (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Patrick H. Lauke 2015-01-31 02:11:58 PST
1) open http://www.paciellogroup.com
2) first link in the page is a hidden skip link, which appears on :focus - activate the link
3) Safari correctly jumps/focuses to the main content, reads the first heading...and then hangs. VoiceOver also appears mostly unresponsive until Safari is explicitly closed from the app-switcher

The skip link, as implemented on the Paciello Group site, includes additional JavaScript (to overcome the problem of current Chrome and older WebKits that would not correctly move the actual keyboard focus/virtual cursor correctly when following skip links).

/* skip link patch for chrome, mainly */
  jQuery('#skippy').click(function() {
    var selector=jQuery(this).attr('href');
    if(selector) {
      jQuery(selector).attr('tabindex','-1').focus();
    }
  });
Comment 1 Radar WebKit Bug Importer 2015-01-31 02:12:13 PST
<rdar://problem/19674895>
Comment 2 Brent Fulgham 2022-02-11 14:55:56 PST
The fix for this issue was needed outside the WebKit project, therefore this is being resolved as 'Moved'.

That team was unable to reproduce the problem.