Status: Untriaged Owner: [email protected] CC: [email protected], [email protected], [email protected] Labels: Type-Bug Pri-3 OS-Windows Area-Sync Size-Small Mstone-4
New issue 19538 by [email protected]: Right clicking on the sync "Start now" link on the NNTP should not show "Open link..." options http://code.google.com/p/chromium/issues/detail?id=19538 What steps will reproduce the problem? 1. Run chrome with --enable-sync 2. Login into www.gmail.com 3. Open a New Tab Page You should see a promotion at the bottom of the NNTP, with a link containing the test "Start now". Expected behavior: Right clicking on that link should not show the regular options for a link (such as "Open link in a new tab"), because this is not an actual link - it is only used to launch the sync wizard when it is clicked. Actual behavior: The "Open link in Xxx" options do show up in the context menu. The problem here is that we use an href. There are two ways to fix this: 1. Use two different elements, one with the link and one with the fake link (and use the right one based on the message the backend sends to the NNTP). 2. Use a link but remove the href attribute instead of setting it to '#'. In this case, we'll need to use the className "link", the aria role and a tabindex since an element without a href attribute is not a link and is not keyboard focusable. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
