Status: Assigned Owner: [email protected] Labels: Type-Bug Pri-2 OS-All Area-Misc Evangelism Mstone-X
New issue 6013 by [email protected]: me.com not detecting Chrome's agent type, page not displaying anything http://code.google.com/p/chromium/issues/detail?id=6013 This bug is related to a report from the following article: http://www.gottabemobile.com/2009/01/02/is-apple- blocking-googles-chrome-browser-on-mecom/ What steps will reproduce the problem? 1. go to http://me.com What is the expected output? Some type of content appears What do you see instead? A blank screen Note: Looking at their Javascript (see below), it would appear that there is no detection for Chrome's userAgent string which is the likely source of the problem. It would be in our best interest to reach out to them to ask them to fix this. var Browser = { IE: navigator.userAgent.indexOf('MSIE') > -1, Opera: navigator.userAgent.indexOf('Opera') > -1, WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1, Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1, MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/), Safari:navigator.userAgent.indexOf('Safari') > -1, Firefox:navigator.userAgent.indexOf('Firefox') > -1 } ; -- 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 -~----------~----~----~----~------~----~------~--~---
