layout/reftests/box/flexbox-child-is-abspos-container-2-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/box/flexbox-child-is-abspos-container-2-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     1.4 +<!-- Any copyright is dedicated to the Public Domain.
     1.5 +     http://creativecommons.org/publicdomain/zero/1.0/ -->
     1.6 +<html>
     1.7 +  <head>
     1.8 +    <style>
     1.9 +      body { margin-top: 50px }
    1.10 +      .relpos_parent {
    1.11 +        position: relative;
    1.12 +        width: 100px;
    1.13 +        height: 100px;
    1.14 +        background: lightblue;
    1.15 +      }
    1.16 +      .abspos_child {
    1.17 +        position: absolute;
    1.18 +        left: 30px;
    1.19 +        bottom: 10px;
    1.20 +        width: 20px;
    1.21 +        height: 130px;
    1.22 +        background: purple;
    1.23 +      }
    1.24 +    </style>
    1.25 +  </head>
    1.26 +  <body>
    1.27 +    <div>
    1.28 +      <div class="relpos_parent">
    1.29 +        <div class="abspos_child"></div>
    1.30 +      </div>
    1.31 +    </div>
    1.32 +  </body>
    1.33 +</html>

mercurial