layout/reftests/box/flexbox-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-abspos-container-2-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,27 @@
     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 +      .relpos_parent {
    1.10 +        position: relative;
    1.11 +        width: 100px;
    1.12 +        height: 100px;
    1.13 +        background: lightblue;
    1.14 +      }
    1.15 +      .abspos_child {
    1.16 +        position: absolute;
    1.17 +        left: 30px;
    1.18 +        top: 10px;
    1.19 +        width: 20px;
    1.20 +        height: 150px;
    1.21 +        background: purple;
    1.22 +      }
    1.23 +    </style>
    1.24 +  </head>
    1.25 +  <body>
    1.26 +    <div class="relpos_parent">
    1.27 +      <div class="abspos_child"></div>
    1.28 +    </div>
    1.29 +  </body>
    1.30 +</html>

mercurial