mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
627 B
HTML
15 lines
627 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<title>Test for right:calc() on absolutely positioned elements</title>
|
||
|
<style>
|
||
|
body { margin: 0; width: 200px }
|
||
|
body > div { height: 3px; position: relative }
|
||
|
div[style] { background: blue; position: absolute; height: 3px; width: 100px }
|
||
|
</style>
|
||
|
|
||
|
<div><div style="right: -moz-calc(-50px)"></div></div>
|
||
|
<div><div style="right: -moz-calc(25%)"></div></div>
|
||
|
<div><div style="right: -moz-calc(-25px - 25%)"></div></div>
|
||
|
<div><div style="right: -moz-calc(75% / 2 - 30px)"></div></div>
|
||
|
<div><div style="right: -moz-calc(-40px - 5% + 10% / 2)"></div></div>
|
||
|
<div><div style="right: -moz-calc(-5% + 40px)"></div></div>
|