mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
592 B
HTML
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>
|