Bug 141113

Summary: AX: VoiceOver/Safari consistently hangs following skip link w/extra JavaScript
Product: WebKit Reporter: Patrick H. Lauke <redux>
Component: AccessibilityAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WORKSFORME    
Severity: Major CC: bfulgham, cfleizach, robin, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 525.x (Safari 3.2)   
Hardware: iPhone / iPad   
OS: iOS 8.1   

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.