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

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <!--
     2      Any copyright is dedicated to the Public Domain.
     3      http://creativecommons.org/licenses/publicdomain/
     5      bug 463204
     6 -->
     7 <html>
     8   <head>
     9     <style>
    10       span {
    11         background-image: -moz-element(#g);
    12         display: inline-block;
    13         margin-left: 0.6px;
    14       }
    15       #repeat {
    16         width: 38px;
    17         height: 38px;
    18         background-repeat: repeat;
    19       }
    20       #norepeat {
    21         width: 19px;
    22         height: 19px;
    23         background-repeat: no-repeat;
    24         background-position: center center;
    25       }
    26     </style>
    27   </head>
    28   <body>
    29     <span id="repeat"></span><br/>
    30     <span id="norepeat"></span>
    31     <div style="overflow:hidden; height:0px">
    32       <div id="g" style="width:17px; height:17px; border:1px solid red;
    33                          background: orange;"></div>
    34     </div>
    35   </body>
    36 </html>

mercurial