[Webkit-unassigned] [Bug 8534] www.inm.dk will not finish loading

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Sat Apr 22 09:15:12 PDT 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=8534


ap at nypop.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
          Component|Page Loading                |HTML DOM
           Priority|P2                          |P1
         Resolution|                            |DUPLICATE
            Summary|Page will not finish loading|www.inm.dk will not finish
                   |                            |loading




------- Comment #1 from ap at nypop.com  2006-04-22 09:15 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 ***


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list