Comment #8 on issue 8912 by [email protected]: Url encoding problem (utf-8 used instead on win-1251) http://code.google.com/p/chromium/issues/detail?id=8912
My brieft attempt to make a reduced test case failed. The following test worked as expected. (we go to http://shop.by/find/?findtext=%EF%E0%EB%E0%F2%EA%E0 ) Othewrise, we'd be in a big trouble :-) ----------- <html> <head> <meta charset="windows-1251"> <script> function onFoo() { alert("going to another page"); document.location.href="http://shop.by/find/?findtext=палатка"; } </script> </head> <body> <input type="button" onclick="onFoo()" value="Click me"> </body> </html> ------------- So, we still need a reduced test case for this bug. And, it's kinda strange that Safari works just fine. Or, maybe not. Our URLRequest- related implementation is different. -- 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 -~----------~----~----~----~------~----~------~--~---
