Closed
Bug 172978
Opened 23 years ago
Closed 18 years ago
gmcanada.com - Page does not load correctly.
Categories
(Tech Evangelism Graveyard :: English Other, defect, P3)
Tracking
(Not tracked)
RESOLVED
WORKSFORME
People
(Reporter: matthew018, Unassigned)
References
()
Details
(Keywords: ecommerce, Whiteboard: [PROPRIETARY-JS] [bug248549notfixed])
This page is supposed to allow you to search for a vehicle at a local dealer.
However, in this build (2002091014) and previous ones I have installed this
feature does not work. When you click on a "Choose" tab there are no choices.
I have tried this page with IE 6.0 and it works fine.
Comment 1•23 years ago
|
||
They're detecting Gecko as NS 4.x in their code. On the two pages that I checked,
they have a <form> in a layer like so:
<DIV id="tb" style="width: 540px; left: 0px; top: 132px; position: absolute;
visibility: visible;">
<FORM NAME="search" method="get">
...
and erroneously detect Gecko as NS4 using the following code (in a couple of
places, perhaps throughout the entire site):
var ns = (navigator.appName.indexOf("Netscape") != -1) ? true : false;
var aForm = (ns) ? document.tb.document.search : document.search;
// ^ causes errors -- assuming NS4 layers API
The page seems to load/work correctly when I correct the above code to:
var aForm = (document.layers) ? document.tb.document.search : document.search;
-> Evangelism
Status: UNCONFIRMED → NEW
Component: Browser-General → English: Non-US
Ever confirmed: true
Keywords: ecommerce
Product: Browser → Tech Evangelism
Summary: Page does not load correctly. → gmcanada.com - Page does not load correctly.
Version: other → unspecified
Comment 2•23 years ago
|
||
Assigning to component owner.
Assignee: asa → momoi
Priority: -- → P3
QA Contact: asa → jeesun
Whiteboard: [PROPRIETARY-JS]
Comment 3•22 years ago
|
||
Mass reassigning English-Other bugs to general default assignees.
Assignee: momoi → english-other
QA Contact: jeesun → english-other
Updated•21 years ago
|
Whiteboard: [PROPRIETARY-JS] → [PROPRIETARY-JS] [bug248549notfixed]
Comment 4•18 years ago
|
||
This URL no longer exists.
Comment 5•18 years ago
|
||
Thanks Matthew!
Status: NEW → RESOLVED
Closed: 18 years ago
Resolution: --- → WORKSFORME
Updated•10 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
•