layout/reftests/position-sticky/top-6-ref.html

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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         height: 100px;
    10       }
    11       #contain {
    12         height: 5px;
    13         background-color: gray;
    14         padding: 0 0 10px;
    15         border-width: 0 0 10px;
    16         border-style: solid;
    17         border-color: #333;
    18       }
    19       #sticky {
    20         height: 5px;
    21         background-color: black;
    22       }
    23     </style>
    24   </head>
    25   <body>
    26     <div id="scroll">
    27       <div id="contain">
    28         <div id="sticky"></div>
    29       </div>
    30     </div>
    31   </body>
    32 </html>

mercurial