dbaron%dbaron.org 6cef0aeaef Add tests for dynamic resizing of things that depend on width of container. b=163504, 28811
git-svn-id: svn://10.0.0.236/trunk@219305 18797224-902f-48f8-a5cc-f745e15eee43
2007-02-01 02:14:40 +00:00

20 lines
442 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Testcase for resizing elements that depend on containing block width</title>
<style type="text/css">
html, body, iframe { height: 100%; }
</style>
<script type="application/javascript">
function run() {
document.getElementById("toresize").style.width = "750px";
}
</script>
</head>
<body onload="run()">
<iframe style="width: 1000px" id="toresize" src="28811-2-inner.html"></iframe>
</body>
</html>