Bug 8534 - www.inm.dk will not finish loading
Summary: www.inm.dk will not finish loading
Status: RESOLVED DUPLICATE of bug 7657
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 420+
Hardware: Mac OS X 10.4
: P1 Normal
Assignee: Nobody
URL: http://www.inm.dk/Index/mainstart.asp...
Keywords:
Depends on:
Blocks:
 
Reported: 2006-04-22 07:27 PDT by Morten Norby Larsen
Modified: 2006-04-22 09:15 PDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Morten Norby Larsen 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.
Comment 1 Alexey Proskuryakov 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 ***