mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
667 B
HTML
23 lines
667 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<title>Test for height:calc() or min-height:calc() on blocks</title>
|
||
|
<style>
|
||
|
body { margin: 0 }
|
||
|
body > div { float: left; width: 1px; background: blue; }
|
||
|
</style>
|
||
|
|
||
|
<!-- tests with a fixed-height container -->
|
||
|
<div style="height: 50px"></div>
|
||
|
<div style="height: 50px"></div>
|
||
|
<div style="height: 75px"></div>
|
||
|
<div style="height: 45px"></div>
|
||
|
<div style="height: 40px"></div>
|
||
|
<div style="height: 30px"></div>
|
||
|
|
||
|
<!-- tests with an auto-height container -->
|
||
|
<div style="height: 50px"></div>
|
||
|
<div style="height: 10px"></div>
|
||
|
<div style="height: 10px"></div>
|
||
|
<div style="height: 10px"></div>
|
||
|
<div style="height: 10px"></div>
|
||
|
<div style="height: 10px"></div>
|