More browser bugs.

From: Dan (dan@ACCESS-1.COM)
Date: Thu Mar 26 1998 - 01:00:17 PST

  • Next message: Dax Kelson: "Sumbit Internet Account v1.1"

    Following all the IE bugs postings:
    The code below will make any browser "go nuts", however, if you press
    escape on netscape 4 (STOP) - it stops - IE 4, however... does not. CPU
    goes up, mem usage goes up - etc. Tested with win95, NT+SP3 4.0
    workstation, and NT 4.0+SP3 Server.
    
    Minimizing won't work either, on NT the window unminimizes itself, on 95
    the minimized task-bar "jumps" around.
    
    One more interesting thing: Explorer lets you position the window out of
    the screen's range (in a position thats "out" of the screen) - netscape
    doesnt.
    (you can also change the minx/miny numbers to a negative values - and it
    "works" with IE.)
    
    <!---
    <HTML>
    <!-- Written by: xyster
    
         email: xysterat_private
    
         Have fun . . .
    
     -->
    <HEAD>
    <TITLE>Bounce</TITLE>
    <SCRIPT LANGUAGE="javascript">
    var dx, dy, x, y, minx, miny, maxx, maxy;
    dx = 50;
    dy = 100;
    x = Math.random() * 200;
    y = Math.random() * 200;
    minx = 0;
    maxx = 600;
    miny = 0;
    maxy = 600;
    do {
        window.moveTo(x, y);
        x += dx;
        y += dy;
        if (x <= minx  ||  x >= maxx) dx = -dx;
        if (y <= miny  ||  y >= maxy) dy = -dy;
       } while(1);
    </SCRIPT>
    </HEAD>
    <BODY>
    </BODY>
    </HTML>
    -->
    
    Dan Anatol
    FingerPrint: C43B 06CE 67EB 21CD C6BD  E308 94AD 363E D0AC A687
    



    This archive was generated by hypermail 2b30 : Fri Apr 13 2001 - 13:47:06 PDT