https://bugzilla.wikimedia.org/show_bug.cgi?id=68798

            Bug ID: 68798
           Summary: Invalid accesskey tooltip on Chrome
           Product: MediaWiki
           Version: 1.24-git
          Hardware: All
                OS: All
            Status: UNCONFIRMED
          Severity: minor
          Priority: Unprioritized
         Component: JavaScript
          Assignee: wikibugs-l@lists.wikimedia.org
          Reporter: m...@m4tx.pl
                CC: krinklem...@gmail.com, matma....@gmail.com,
                    tpars...@wikimedia.org
       Web browser: ---
   Mobile Platform: ---

Have a look at resources/src/jquery/jquery.accessKeyLabel.js:

} else if ( profile.name === 'chrome' ) {
    accessKeyPrefix = (
        profile.platform === 'mac'
            // Chrome on Mac
            ? 'ctrl-option-'
            // Chrome on Windows or Linux
            // (both alt- and alt-shift work, but alt with E, D, F etc does not
            // work since they are browser shortcuts)
            : 'alt-shift-'
    );

As you can see, the code sets the accesskey label to "alt-shift-accesskey" on
Chrome because of conflicts with some keys when using alt-accesskey. The
problem is: alt-shift-accesskey causes conflicts, too. On the Edit page, you
have "This is a minor edit" checkbox with accesskey "i". And here's the problem
- in Chrome, alt-shift-i is a shortcut for reporting an issue...

MediaWiki 1.24-git (227204c)
Chrome 38 (dev) on Ubuntu 14.04 64-bit, same issue on Chrome 36 (stable) on
Windows 7 64-bit

I'm posting a screenshot of Chrome menu showing the "Report an issue" menuitem
with its shortcut.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to