1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/position-sticky/column-contain-2-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,48 @@ 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:corey@coreyford.name"> 1.10 + <style> 1.11 + #scroll { 1.12 + overflow: hidden; 1.13 + height: 200px; 1.14 + line-height: 1; 1.15 + } 1.16 + #columns { 1.17 + -moz-column-count: 2; 1.18 + column-count: 2; 1.19 + -moz-column-rule: 1px solid black; 1.20 + column-rule: 1px solid black; 1.21 + height: 200px; 1.22 + width: 200px; 1.23 + } 1.24 + #contain { 1.25 + padding-bottom: 10px; 1.26 + border-bottom: 10px solid gray; 1.27 + } 1.28 + #fill { 1.29 + height: 370px; 1.30 + background: blue; 1.31 + } 1.32 + #sticky { 1.33 + position: relative; 1.34 + top: 190px; 1.35 + width: 10px; 1.36 + height: 10px; 1.37 + background: black; 1.38 + } 1.39 + </style> 1.40 + </head> 1.41 + <body> 1.42 + <div id="scroll"> 1.43 + <div id="columns"> 1.44 + <div id="contain"> 1.45 + <div id="sticky"></div> 1.46 + <div id="fill"></div> 1.47 + </div> 1.48 + </div> 1.49 + </div> 1.50 + </body> 1.51 +</html>