mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
22 lines
626 B
HTML
22 lines
626 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%; }
|
|
img { image-rendering: -moz-crisp-edges; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div><img src="blue-600x58.png" width="100" style="height: 50%"></div>
|
|
<div><img src="blue-600x58.png" width="2" style="min-height: 50%"></div>
|
|
<div><img src="blue-600x58.png" 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>
|