Closed
Bug 131991
Opened 23 years ago
Closed 21 years ago
milka.de - Animated images don't function; most links dead
Categories
(Tech Evangelism Graveyard :: German, defect)
Tech Evangelism Graveyard
German
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: ralph, Unassigned)
References
()
Details
(Whiteboard: [proprietary-js])
should be a game...
Build ID:2002020415 (quite old?)
Comment 1•23 years ago
|
||
Confirming bug with Mozilla trunk binary 20020317xx on WinNT. If you
load the page in NN4.7 or IE6, you see images of products moving from
right to left in the main picture. In Mozilla, however, the page is
inert when you load it. I don't think it hangs: the CPU doesn't go to 100%,
and the white "Milka" link at the top upper-left works. But none of the
other links work. No errors in the JavaScript Console.
Note the site uses insufficient browser-sniffing:
var ns4 = (document.layers) ? true : false;
var ie4 = (document.all) ? true : false;
var d_steuerpult;
var d_scontrol;
var d_clicksperre = null;
var produkte = new Array();
function Init()
{
d_clicksperre = new Dynamic("clicksperre");
d_steuerpult = new Dynamic("steuerpult");
d_scontrol = new Dynamic("scontrol");
detectProducts();
productSetter();
produktSlider();
InitDesc(winW,winH);
d_clicksperre.hide();
}
where we have this problem in Mozilla:
function detectProducts()
{
var i;
for (i=0; i<20; i++)
{
var id = "produkt"+i;
if ( ((ns4) && (document.layers[id])) || ((ie4) && (document.all[id])) )
produkte[i] = new Dynamic(id);
else
break;
}
}
Because |ie4| and |ns4| evaluate to false in Mozilla, the |produkte| array
is given no elements and so has zero length. That's why you don't see any
products moving around.
Reassigning to Tech Evangelism -
Assignee: rogerl → nitot
Status: UNCONFIRMED → NEW
Component: JavaScript Engine → Europe: West
Ever confirmed: true
Product: Browser → Tech Evangelism
QA Contact: pschwartau → caillon
Version: other → unspecified
Comment 2•23 years ago
|
||
Resummarizing; changing OS: Linux ---> All.
OS: Linux → All
Summary: completly frozen till pressing BACK button → [LAYER]Animated images don't function; most links dead
Contact address is milka.de@krafteurope.com
Hardware: PC → All
Summary: [LAYER]Animated images don't function; most links dead → milka.de - Animated images don't function; most links dead
Whiteboard: [proprietary-js]
Comment 4•22 years ago
|
||
*** Bug 172420 has been marked as a duplicate of this bug. ***
Comment 5•22 years ago
|
||
move...
Assignee: nitot → german
Component: Europe: West → German
QA Contact: z-caillon-obsolete2 → german
Comment 6•21 years ago
|
||
new url is
http://www.milka.de/milka/page?siteid=milka-prd&locale=dede1&PagecRef=100
could add items to basket, and order form opens as well
Reporter | ||
Comment 7•21 years ago
|
||
the web side has completley changed, since I posted this bug
so, forget it!
Comment 8•21 years ago
|
||
resolving as invalid since the page content changed - according to comment 7
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
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
•