summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/28811-1b.html
blob: ee854c18f26fa38f19f020a595440188428af5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!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: 500px" id="toresize" src="28811-1-inner.html"></iframe>
</body>
</html>