Comment #4 on issue 14248 by [email protected]:  
[www.ticketnet.co.il]: ticketnet.co.il pops a warning on "unsopprted  
browser"
http://code.google.com/p/chromium/issues/detail?id=14248

Confirmed:
----------
IE7: OK
FF3: OK
Safari 4: Not OK
Chromium/Win 3.0.191.0 (Developer Build 19615): Not OK
    User-agent string spoofs:
       IE 7: OK
       FF 3: OK
       Safari 4: not OK
Chrome/Mac 3.0.190.0 (Official 18973): Not OK

There is a piece of JavaScript code that detects the browser in
http://ticketnet.co.il/ticketNet/dwr/engine.js

if (navigator.userAgent.indexOf("Gecko/") != -1) {
   batch.rpcType = dwr.engine.XMLHttpRequest;
   batch.map.partialResponse = dwr.engine._partialResponseYes;
}
else if (navigator.userAgent.indexOf("; MSIE")) {
   batch.rpcType = dwr.engine.IFrame;
   batch.map.partialResponse = dwr.engine._partialResponseYes;
}
else if (navigator.userAgent.indexOf("Safari/")) {
   batch.rpcType = dwr.engine.XMLHttpRequest;
   batch.map.partialResponse = dwr.engine._partialResponseYes;
}
else {
   batch.rpcType = dwr.engine.XMLHttpRequest;
   batch.map.partialResponse = dwr.engine._partialResponseNo;
}


--
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to