RESOLVED DUPLICATE of bug 7657 8534
www.inm.dk will not finish loading
https://bugs.webkit.org/show_bug.cgi?id=8534
Summary www.inm.dk will not finish loading
Morten Norby Larsen
Reported 2006-04-22 07:27:20 PDT
Loading of hte page stops, and the beach ball starts spinning, around half-way though, judging from the progress bar in the address bar.
Attachments
Alexey Proskuryakov
Comment 1 2006-04-22 09:15:11 PDT
The problem here seems to be the same as with digg.com (the page uses addEventListener incorrectly, relying on an old Firefox bug). However, it can be fixed independently, by implementing WinIE attachEvent (bug 6598). We already have bugs filed for both issues, so closing as a duplicate. if (window.attachEvent){ window.attachEvent( 'onload', nmtrack ); } else if (window.addEventListener) { window.addEventListener('load', nmtrack, false); } else { var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = nmtrack; } else { window.onload=function(){nmtrack();oldonload();} } } *** This bug has been marked as a duplicate of 7657 ***
Note You need to log in before you can comment on or make changes to this bug.