163504-2b.html (461B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>Testcase for resizing elements that depend on containing block height</title> 5 <style type="text/css"> 6 html, body { height: 100%; } 7 iframe { width: 100%; } 8 </style> 9 <script type="application/javascript"> 10 11 function run() { 12 document.getElementById("toresize").style.height = "750px"; 13 } 14 15 </script> 16 </head> 17 <body onload="run()"> 18 <iframe style="height: 500px" id="toresize" src="163504-2-inner.html"></iframe> 19 </body> 20 </html>