mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
25 lines
1.3 KiB
HTML
25 lines
1.3 KiB
HTML
|
<!DOCTYPE HTML>
|
||
|
<title>Test for top:calc() on absolutely positioned elements</title>
|
||
|
<style>
|
||
|
body { margin: 0 }
|
||
|
body > div { float: left; height: 100px; width: 3px; position: relative }
|
||
|
div[style] { background: blue; position: absolute; height: 10px; width: 3px }
|
||
|
div.space { height: 100px }
|
||
|
</style>
|
||
|
|
||
|
<!-- tests with a fixed-height container -->
|
||
|
<div><div style="top: -moz-calc(50px)"></div></div>
|
||
|
<div><div style="top: -moz-calc(50%)"></div></div>
|
||
|
<div><div style="top: -moz-calc(25px + 50%)"></div></div>
|
||
|
<div><div style="top: -moz-calc(150% / 2 - 30px)"></div></div>
|
||
|
<div><div style="top: -moz-calc(40px + 10% - 20% / 2)"></div></div>
|
||
|
<div><div style="top: -moz-calc(40px - 10%)"></div></div>
|
||
|
|
||
|
<!-- tests with an auto-top container -->
|
||
|
<div><div><div style="top: -moz-calc(50px)"></div><div class="space"></div></div></div>
|
||
|
<div><div><div style="top: -moz-calc(50%)"></div><div class="space"></div></div></div>
|
||
|
<div><div><div style="top: -moz-calc(25px + 50%)"></div><div class="space"></div></div></div>
|
||
|
<div><div><div style="top: -moz-calc(150% / 2 - 30px)"></div><div class="space"></div></div></div>
|
||
|
<div><div><div style="top: -moz-calc(40px + 10% - 20% / 2)"></div><div class="space"></div></div></div>
|
||
|
<div><div><div style="top: -moz-calc(40px - 10%)"></div><div class="space"></div></div></div>
|