layout/reftests/abs-pos/fixed-pos-auto-offset-1-ref.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 <!DOCTYPE html>
     2 <html>
     3 <head>
     4   <title>Testcase Bug 851514</title>
     5   <style>
     6   #parent {
     7     position: fixed;
     8     height: 30px;
     9     width: 30px;
    10     background: green;
    11     left: 70px;
    12     top: 70px;
    13   }
    14   #child {
    15     position: fixed;
    16     top: auto;
    17     left: auto;
    18     width: 10px;
    19     height: 10px;
    20     background: purple;
    21   }
    22   </style>
    23 </head>
    24 <body>
    25   <div id="parent">
    26     <div id="child"></div>
    27   </div>
    28   The purple block should be inside the green block.
    29 </body>
    30 </html>

mercurial