Closed
Bug 187372
Opened 22 years ago
Closed 20 years ago
I can't interact with the form
Categories
(Tech Evangelism Graveyard :: French, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 185161
People
(Reporter: cy_rain26, Unassigned)
References
()
Details
(Whiteboard: Weak and wrong browser detection (getElementById support not tested))
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3a) Gecko/20021212
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3a) Gecko/20021212
ooshop.com is a website to buy online.
U click the quantity of a product, it adds in a menu
-> I can never add any products nor use the "+" or "-" icons to change
quantity-> browser is unusable in this website
Reproducible: Always
Steps to Reproduce:
1.Identify yourself
2. Try to put anything in the cart
3.
Actual Results:
NOTHING :)
Expected Results:
He should have changed the quantities or put the products in the cart
My Linux is Mandrake 9
mozilla : 1.3a
Java plugin downloaded
Good luck and keep up the good work though :)
Comment 1•22 years ago
|
||
When I load that url there is no obvious way to identify myself... (or to do
anything but load the french or spanish versions of the site).
Is there an English version? If not, please give detailed steps to reproduce
that someone who speaks only English could follow (this means very detailed
directions on where to click, what to type, etc).
Summary: I can't interact with the form → I can't interact with the form
Comment 2•22 years ago
|
||
Steps to reproduce from reporter:
1) Load http://www.ooshop.com
2) Click the french flag
3) Click the "entrez dans le magasin" link near the top of the page (right
after the textfield)
4) enter zip code (french area only) : 75015
5) Click Yellow Button "entrez dans le magasin"
A java Applet loads on the left frame.
6) type "beurre" in the form field then "ok"
a form appears in the middle frame : this is the form I said I could not
interact with.
The JS console says "undefined has no properties"; not sure what's triggering
that yet....
Keywords: qawanted
Comment 3•22 years ago
|
||
works fine with build 2003-01-03-09-trunk on Linux RedHat 7.3
Comment 4•22 years ago
|
||
WFM on WinXP 2003060409. You wanna try again with a recent build?
Comment 5•22 years ago
|
||
Since there's no word back from the reporter and this works perfectly fine for
me and Vladimir (I'm not even getting "undefined has no properties"), I'm going
to mark this WORKSFORME.
Charly, if it still doesn't work on a recent build, reopen.
Note to anyone trying to reproduce this: there doesn't seem to be any more
buerre for sale in France :-). Try "lait".
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → WORKSFORME
I tried with Mozilla 1.4a and still gets the "undefined has no properties" :(
Status: RESOLVED → UNCONFIRMED
Resolution: WORKSFORME → ---
Comment 7•22 years ago
|
||
charly, please test with either 1.4 or better yet 1.5a or a recent nightly.
Something not working in a build as old as 1.4a is not exactly a cause for
concern.
Comment 8•21 years ago
|
||
They use wrong or unreliable user agent string detection scripts for their js
functions:
http://www.ooshop.fr/Includes/js/lib_LayerAttente.js
I would recommend to redirect this bug to
product: Tech Evangelism
Greetings,
I tried with Firefox 0.8 and still get the same behaviour : nothing happens when
you click on a + or -...
I apologize for not answering earlier, since I did not use the site anymore, I
was selfish, sorry.
Comment 10•20 years ago
|
||
After step 3 of comment #3, the javascript console reports:
Error: document.layers has no properties
Source File: http://www.ooshop.fr/DATA/FR/Accueil/V3/indexHome.asp?PARAM=&URLDIRECT=
Line: 76
which is:
function EntreeMagasin()
{
var CP,MAIL;
if(isIE4Sup||isIE4)//NS6 compatible?
{
CP = document.formulaire.CP.value;
MAIL = document.formulaire.EMAIL.value;
}
else
{
CP = document.layers['LayerAffichage'].document.formulaire.CP.value;
MAIL = document.layers['LayerAffichage'].document.formulaire.EMAIL.value;
}
Again, I checked the
http://www.ooshop.fr/Includes/js/lib_LayerAttente.js
which is used in
http://www.ooshop.fr/DATA/FR/Accueil/V3/indexHome.asp
and in many asp pages and I see these global variable definitions:
var isNN4Sup, isIE4Sup,isIE4;
if (parseInt(navigator.appVersion.charAt(0)) >= 4)
{
isNN4Sup = (navigator.appName.indexOf("Netscape",0)!=-1 &&
parseInt(navigator.appVersion)>=4 && parseInt(navigator.appVersion)<5) ? true :
false;
isIE4Sup = ((navigator.appVersion.indexOf("MSIE 6")!= -1 ) ||
(navigator.appVersion.indexOf("MSIE 5")!= -1 ) ||
(navigator.userAgent.indexOf("Netscape6",0)!=-1) ||
(navigator.userAgent.indexOf("Netscape/7.0",0)!=-1)) ? true : false;
isIE4 = (navigator.appVersion.indexOf("MSIE 4")!= -1) ? true : false;
}
else
{
isNN4Sup = false;
isIE4Sup = false;
isIE4 = false ;
}
So, here, NS 7.1, NS 7.2, Mozilla 1.x and all Gecko-based browsers won't make
the variable isIE4Sup set to true.
This is *really* a Tech Evangelism bug.
-> Tech Evangelism
-> French
Status: UNCONFIRMED → NEW
Component: DOM: Events → French
Ever confirmed: true
Keywords: qawanted
OS: Linux → All
Product: Browser → Tech Evangelism
Whiteboard: Weak and wrong browser detection (getElementById support not tested)
Version: Trunk → unspecified
Updated•20 years ago
|
Assignee: saari → french
Comment 11•20 years ago
|
||
Comment 12•20 years ago
|
||
... and now resolving as DUPLICATE :( What a waste of time!
*** This bug has been marked as a duplicate of 185161 ***
Status: NEW → RESOLVED
Closed: 22 years ago → 20 years ago
Resolution: --- → DUPLICATE
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
•