IE6 Frameset Resize Bug
All,
Does anyone know what is going on with resizing frames in a frameset? Here is the problem:
When page below is loaded, the left frame of a frameset that has a subframeset cannot be resized. When trying to resize, the left frame can be dragged to make it smaller but the browser hangs if you try drag the frame seperator to make it larger (to the right).
After it hangs (like the event processing never terminates) the resize cursor remains. You can drag the seperator to the left to shrink the left frame and recover from the hang. However, your left frame will continually get smaller and smaller.
Here is page code to illustrate:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Frametest Document</title> </head>
<frameset rows="*" cols="33%,*" framespacing="3" frameborder="yes" border="0" bordercolor="#000099">
<frame src="http://www.yahoo.com" name="leftFrame" id="leftFrame" title="leftFrame" />
<frameset rows="66%,33%" framespacing="3" frameborder="yes" border="0" bordercolor="#000099">
<frame src="http://www.salesforce.com" name="topFrame" id="topFrame" title="topFrame" />
<frame src="http://www.google.com" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
This has not historically been a problem so I am suspicious of one of the patches in IE6 sp1 or one of the security patches.
Any ideas?
Thanks

