layout/reftests/position-sticky/containing-block-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 <!-- Any copyright is dedicated to the Public Domain.
     3    - http://creativecommons.org/publicdomain/zero/1.0/ -->
     4 <html>
     5   <head>
     6     <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
     7     <style>
     8       body {
     9         height: 200px;
    10         margin: 0;
    11       }
    12       #sticky {
    13         position: relative;
    14         top: 100px;
    15         height: 10px;
    16         background-color: black;
    17       }
    18       #absolute {
    19         position: absolute;
    20         top: 5px;
    21         left: 5px;
    22         width: 10px;
    23         height: 10px;
    24         background-color: blue;
    25       }
    26     </style>
    27   <body>
    28     <div id="sticky">
    29       <div id="absolute"></div>
    30     </div>
    31   </body>
    32 </html>

mercurial