layout/reftests/position-sticky/overconstrained-1-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         overflow: hidden;
    11       }
    12       #sticky {
    13         height: 81px;
    14         background-color: black;
    15       }
    16     </style>
    17   </head>
    18   <body>
    19     <div id="scroll">
    20       <div style="height: 95px"></div>
    21       <div id="sticky"></div>
    22       <div style="height: 100px"></div>
    23     </div>
    24   </body>
    25 </html>

mercurial