IE 8 crashes on print preview for a simple page with iframe with nested framsets after applying - MS14-052: Cumulative security update for Internet Explorer: September 9, 2014.
I have 3 simple HTML pages Iframe.html, FrameSet.html and Left.html. If I open Iframe.html and click on print preview it crashes.
If i remove the nested framesets then it works just fine. Here is the code for 3 pages.
Iframe.htm Code<!DOCTYPE html>
<html>
<body>
<iframe src="FrameSet.html"></iframe>
</body>
</html>
FrameSet.htm - Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<HTML><HEAD><META content="IE=8.0000" http-equiv="X-UA-Compatible">
<TITLE></TITLE>
</HEAD>
<FRAMESET cols="50%,50%" >
<FRAMESET cols="5%,95%">
<FRAME src="left.html">
<FRAME src="left.html">
</FRAMESET>
<FRAME src="left.html">
</FRAMESET></HTML>
left.htm code
<!DOCTYPE html>
<html>
<body>
<div style="color:#0000FF">
<h3>Left</h3>
</div>
</body>
</html>
Now if I replace the FrameSet.htm - Code with below code it works fine
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<HTML><HEAD><META content="IE=8.0000" http-equiv="X-UA-Compatible">
<TITLE></TITLE>
</HEAD>
<FRAMESET cols="50%,5%,45%" >
<FRAME src="left.html">
<FRAME src="left.html">
<FRAME src="left.html">
</FRAMESET></HTML>
Please help?
Thanks,
Himanshu