Closed
Bug 202105
Opened 23 years ago
Closed 23 years ago
intel.com - Site doesn't recognize Mozilla browser in JavaScript sniffing
Categories
(Tech Evangelism Graveyard :: Other, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: wolruf, Assigned: momoi)
References
()
Details
tested with build ID 2003041416 on Win2k.
Load http://www.intel.com/products/mobiletechnology/hotspots/finder.htm
The selectbox is empty whereas it's filled with a list of countries in IE6.
Source code shows:
function Is() {
agent = navigator.userAgent.toLowerCase();
appversion = navigator.appVersion.toLowerCase();
this.major = parseInt(navigator.appVersion);
this.minor = parseFloat(navigator.appVersion);
this.ns = ((agent.indexOf('mozilla') != -1) && ((agent.indexOf('spoofer') == -1)
&& (agent.indexOf('compatible') == -1)));
this.ns4 = (this.ns && (this.major == 4));
this.ns6 = (this.ns && (this.major >= 5));
[...]
| Reporter | ||
Comment 1•23 years ago
|
||
now works fine in Firebird 0.6
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•