layout/reftests/image-element/bug-463204-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/image-element/bug-463204-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +<!--
     1.5 +     Any copyright is dedicated to the Public Domain.
     1.6 +     http://creativecommons.org/licenses/publicdomain/
     1.7 +-->
     1.8 +<html>
     1.9 +  <head>
    1.10 +    <style>
    1.11 +      span {
    1.12 +        background-image: -moz-element(#g);
    1.13 +        display: inline-block;
    1.14 +        margin-left: 1px;
    1.15 +      }
    1.16 +      #repeat {
    1.17 +        width: 38px;
    1.18 +        height: 38px;
    1.19 +        background-repeat: repeat;
    1.20 +      }
    1.21 +      #norepeat {
    1.22 +        width: 19px;
    1.23 +        height: 19px;
    1.24 +        background-repeat: no-repeat;
    1.25 +        background-position: center center;
    1.26 +      }
    1.27 +    </style>
    1.28 +  </head>
    1.29 +  <body>
    1.30 +    <span id="repeat"></span><br/>
    1.31 +    <span id="norepeat"></span>
    1.32 +    <div style="overflow:hidden; height:0px">
    1.33 +      <div id="g" style="width:17px; height:17px; border:1px solid red;
    1.34 +                         background: orange;"></div>
    1.35 +    </div>
    1.36 +  </body>
    1.37 +</html>
    1.38 +

mercurial