gecko/layout/reftests/css-calc/max-width-block-intrinsic-1.html

19 lines
746 B
HTML

<!DOCTYPE HTML>
<title>intrinsic width of max-width: calc() on blocks</title>
<style>
body { font-size: 10px }
body > div { float: left; clear: left;
margin: 0 0 1px 0; background: blue; color: white; height: 5px }
body > div > div { width: 400px }
body > div > div > div { width: 200px }
</style>
<div><div style="max-width: -moz-calc(50% - 3px)"><div></div></div></div>
<div><div style="max-width: -moz-calc(5em - 3px)"><div></div></div></div>
<div><div style="max-width: -moz-calc(5em - 0%)"><div></div></div></div>
<div><div style="max-width: -moz-calc(50%)"><div></div></div></div>
<div><div style="max-width: -moz-calc(50px)"><div></div></div></div>
<div><div style="max-width: -moz-calc(25% + 25%)"><div></div></div></div>