Mozilla/mozilla/layout/reftests/bugs/163504-1-inner.html
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

21 lines
592 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Testcase for resizing elements that depend on containing block height</title>
<style type="text/css">
html, body { height: 100%; }
div { height: 3%; }
</style>
</head>
<body>
<div><img src="mozilla-banner.gif" width="100" style="height: 50%"></div>
<div><img src="mozilla-banner.gif" width="2" style="min-height: 50%"></div>
<div><img src="mozilla-banner.gif" width="100" style="max-height: 50%"></div>
<div><span style="position:relative; top: 30%">text</span></div>
<div><span style="position:relative; bottom: 30%">text</span></div>
</body>
</html>