1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/position-sticky/bottom-4-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- Any copyright is dedicated to the Public Domain. 1.6 + - http://creativecommons.org/publicdomain/zero/1.0/ --> 1.7 +<html> 1.8 + <head> 1.9 + <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com"> 1.10 + <style> 1.11 + #scroll { 1.12 + height: 100px; 1.13 + } 1.14 + #contain { 1.15 + height: 5px; 1.16 + background-color: gray; 1.17 + padding: 10px 0 0; 1.18 + border-width: 10px 0 0; 1.19 + border-style: solid; 1.20 + border-color: #333; 1.21 + } 1.22 + #sticky { 1.23 + height: 3px; 1.24 + margin-top: 2px; 1.25 + background-color: black; 1.26 + } 1.27 + </style> 1.28 + </head> 1.29 + <body> 1.30 + <div id="scroll"> 1.31 + <div style="height: 75px"></div> 1.32 + <div id="contain"> 1.33 + <div id="sticky"></div> 1.34 + </div> 1.35 + </div> 1.36 + </body> 1.37 +</html>