Status: Untriaged Owner: [email protected] Labels: Type-Bug Pri-2 OS-All Area-BrowserUI
New issue 7042 by [email protected]: Problem typing username manually on some sites when a username/password is autofilled http://code.google.com/p/chromium/issues/detail?id=7042 (was bug b/1270914) [Original Steps] (see reduced test case) 1 Log in to http://www.taobao.com and save the credentials in Chromium. 2 Log out and revisit the login page 3 Start typing a different username starting with the same letter [Result] Chromium doesn't let you because the autofilled value clobbers your typing. (seems to work if you type the first letter twice). Similar to issue 3385. The problem is with some JS on the page that does // ... usn = username input element usn.onfocus = function(){usn.select();usn.style.color = "#000";}; so that whenever a DOMFocusIn event fires for the element the text is selected. I overrode this by using the js console to do 'usn.onfocus = function () { };' and from that point on the AC worked, so I attached a reduced test case (Enter a login and save, go back to the page and try to type it in. You'll see the same behavior). The extra JS is conflicting with some work-arounds for http://bugs.webkit.org/show_bug.cgi?id=169769. Attachments: pwac.html 374 bytes -- 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 -~----------~----~----~----~------~----~------~--~---
