summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/28811-2b.html
blob: a66b9305d20ad601811071377d21779ba352650a (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-2-inner.html"></iframe>
</body>
</html>