The Safari developers have decided to change the accesskey modifiers. This will require an additional case in wikibits.js.
The new modifier keys are ctrl-option (or ctrl-alt) and they are active in at least WebKit 527 and higher.
var match = navigator.userAgent.match(/AppleWebKit\/(\d+)/);
if (match) { var webKitVersion = parseInt(match[1]); if (webKitVersion < 420)
}
I'll try to make a patch for this.
Version: unspecified
Severity: minor
URL: http://trac.webkit.org/changeset/34259