OT: javascript or html to crash netscape or IE

2001-12-11 Thread mherbene
I need a snippet of javascript/html/dhtml/css/whatever that will cause Netscape or IE to crash reliably so I can test something. I have certainly managed to crash them in the past but can't find the code that did it. Any ideas? Martin Herbener

RE: javascript or html to crash netscape or IE

2001-12-11 Thread Ron Hornbaker
I need a snippet of javascript/html/dhtml/css/whatever that will cause Netscape or IE to crash reliably so I can test something. I have certainly managed to crash them in the past but can't find the code that did it. Any ideas? http://www.netscape.com/ usually does it for me. ;)

Re: javascript or html to crash netscape or IE

2001-12-11 Thread BILLY CRAVENS
I know that this chunk in an .htm by itself will take down NS4: tabletd width=1style=width:1div style=width:11 scriptdocument.write('div style=width:1')/script /table --- Billy Cravens - Original Message - From: Ron Hornbaker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: javascript or html to crash netscape or IE

2001-12-11 Thread mherbene
I mean, put the browser in such a state that its window does not update and it can only be made to go away by using Task Manager to kill the process. It's ok if the crash doesn't kill the OS. -Original Message- From: Ron Hornbaker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December

Re: OT: javascript or html to crash netscape or IE

2001-12-11 Thread Alex
Go away. On Tue, 11 Dec 2001 [EMAIL PROTECTED] wrote: I need a snippet of javascript/html/dhtml/css/whatever that will cause Netscape or IE to crash reliably so I can test something. I have certainly managed to crash them in the past but can't find the code that did it. Any ideas?

RE: javascript or html to crash netscape or IE

2001-12-11 Thread Alex
Why do you need this?? On Tue, 11 Dec 2001 [EMAIL PROTECTED] wrote: I mean, put the browser in such a state that its window does not update and it can only be made to go away by using Task Manager to kill the process. It's ok if the crash doesn't kill the OS. -Original

RE: javascript or html to crash netscape or IE

2001-12-11 Thread Michael Haggerty
script language=javascript i = 0; while (i 1) { alert('Hello!'); } /script You can replace the alert box with any other code you would like. Mike -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 11, 2001 4:15

RE: javascript or html to crash netscape or IE

2001-12-11 Thread Bryant Tyson
You can always throw an infinite loop in your code. That's always good for hosing the browser. ;) -- Bryant Tyson, WEB DEVELOPER http://webtys.com WebTY's, The Educated Choice. On Tue, 11 Dec 2001 [EMAIL PROTECTED] wrote: