layout/reftests/w3c-css/submitted/values3/calc-min-height-block-1.html

Thu, 15 Jan 2015 21:13:52 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:13:52 +0100
branch
TOR_BUG_9701
changeset 12
7540298fafa1
permissions
-rw-r--r--

Remove forgotten relic of ABI crash risk averse overloaded method change.

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4   <title>CSS Test: Test for min-height:calc() on blocks</title>
     5   <link rel="author" title="L. David Baron" href="http://dbaron.org/">
     6   <link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
     7   <meta name="flags" content="">
     8 <style type="text/css">
     9 body { margin: 0 }
    10 body > div { float: left; height: 100px; width: 1px; }
    11 body > div > div { background: blue }
    13 /* for auto-height tests */
    14 body > div > div > div > div { height: 10px }
    15 </style>
    16 </head>
    17 <body>
    19 <!-- tests with a fixed-height container -->
    20 <div><div style="min-height: calc(50px)"></div></div>
    21 <div><div style="min-height: calc(50%)"></div></div>
    22 <div><div style="min-height: calc(25px + 50%)"></div></div>
    23 <div><div style="min-height: calc(150% / 2 - 30px)"></div></div>
    24 <div><div style="min-height: calc(40px + 10% - 20% / 2)"></div></div>
    25 <div><div style="min-height: calc(40px - 10%)"></div></div>
    27 <!-- tests with an auto-height container -->
    28 <div><div><div style="min-height: calc(50px)"><div></div></div></div></div>
    29 <div><div><div style="min-height: calc(50%)"><div></div></div></div></div>
    30 <div><div><div style="min-height: calc(25px + 50%)"><div></div></div></div></div>
    31 <div><div><div style="min-height: calc(150% / 2 - 30px)"><div></div></div></div></div>
    32 <div><div><div style="min-height: calc(40px + 10% - 20% / 2)"><div></div></div></div></div>
    33 <div><div><div style="min-height: calc(40px - 10%)"><div></div></div></div></div>
    34 </body>
    35 </html>

mercurial