layout/reftests/position-sticky/left-2-ref.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     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       #scroll {
     9         width: 100px;
    10         height: 100px;
    11         border: 1px solid black;
    12         white-space: nowrap;
    13       }
    14       #scroll div {
    15         display: inline-block;
    16       }
    17       #contain {
    18         width: 100%;
    19         height: 10px;
    20         background-color: gray;
    21       }
    22       #sticky {
    23         position: relative;
    24         left: 10px;
    25         width: 10px;
    26         height: 10px;
    27         background-color: black;
    28       }
    29     </style>
    30   <body>
    31     <div id="scroll">
    32       <div id="contain">
    33         <div id="sticky"></div>
    34       </div>
    35     </div>
    36   </body>
    37 </html>

mercurial