layout/reftests/image-element/element-paint-multiple-backgrounds-01a.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <!--
     2      Any copyright is dedicated to the Public Domain.
     3      http://creativecommons.org/licenses/publicdomain/
     4      Multiple -moz-element background images
     5 -->
     6 <!DOCTYPE html>
     7 <html>
     8 <head>
     9 <style>
    11 #box {
    12   height: 100px;
    13   width: 200px;
    14   background: -moz-element(#lime) top left no-repeat,
    15               -moz-element(#green) top right no-repeat red;
    16 }
    18 div > div {
    19   width: 100px;
    20   height: 100px;
    21 }
    23 </style>
    24 </head>
    25 <body style="margin:0">
    26 <div id="box"></div>
    28 <div style="overflow:hidden; height:0">
    29   <div id="lime" style="background-color: lime"></div>
    30   <div id="green" style="background-color: green"></div>
    31 </div>
    32 </body>
    33 </html>

mercurial