HTML code that can make IE freeze

HTML code that can make IE freeze
We simply need to open any text editor, copy the following code into it, and save the file, for example SomeFilename.html.

Copy code
The code is as follows:

<html><head>
<style type="text/css">
#a {
margin:0 10px 10px;
}
#b {
width:100%;
}
</style>
<title>IE Crasher</title>
</head>
<body>
<table><tr><td>
<div id="a">
<form id="b">
<input type="text" name="test"/>
</div>
</td><td width="1"></td></tr></table>
</body></html>

Then open it with Internet Explorer - haha! It died miserably for you to see.

This bug exists in almost all popular IE versions, from IE6 to the just-released 6th platform preview of Internet Explorer 9. In IE6, the page often appears blank, but the entire window is not interactive. In IE8, the crash is complete. IE9 Beta has enhanced robustness. Through my actual testing, this page will cause the entire process to become unresponsive. Sometimes IE9 will prompt you that there are problems with the webpage, but this cannot avoid the reality of crashing.

In fact, this problem has been discovered a long time ago, and there is even a dedicated website (http://crashie8.com/, please spread this link with caution). Any browser other than IE would have no problem opening the page, but IE crashed inexplicably.

Of course, if you are careful, you will find that the <form> tag in the above HTML code is not closed. We need to use the </form> closing tag after the <input> tag to make this code conform to the specification. Standard code will not cause IE to crash, so it seems that it is not IE's fault.

However, when other browsers have high fault tolerance, IE does not, even in IE9 it still does not have it. This is the tragedy of IE.

<<:  Web Design Experience: Self-righteous Web Designers

>>:  JavaScript to achieve simple drag effect

Recommend

Detailed explanation of Linux commands sort, uniq, tr tools

Sort Tool The Linux sort command is used to sort ...

Robots.txt detailed introduction

Robots.txt is a plain text file in which website ...

Comparison of the advantages of vue3 and vue2

Table of contents Advantage 1: Optimization of di...

Detailed explanation of the method of comparing dates in MySQL

If there is a table product with a field add_time...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

HTML uncommon tags optgroup, sub, sup and bdo example code

Optgroup is used in the select tag to make the dro...

W3C Tutorial (11): W3C DOM Activities

The Document Object Model (DOM) is a platform, a ...

IDEA uses the Docker plug-in (novice tutorial)

Table of contents illustrate 1. Enable Docker rem...

How to set static IP in centOS7 NET mode

Preface NAT forwarding: Simply put, NAT is the us...

SQL GROUP BY detailed explanation and simple example

The GROUP BY statement is used in conjunction wit...

Vue3 uses axios interceptor to print front-end logs

Table of contents 1. Introduction 2. Use axios in...

Implementation of Docker deployment of MySQL cluster

Disadvantages of single-node database Large-scale...

MySQL uses aggregate functions to query a single table

Aggregate functions Acts on a set of data and ret...

Introduction to possible problems after installing Tomcat

1. Tomcat service is not open Enter localhost:808...