1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/position-sticky/block-in-inline-continuations-inner.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 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 + <title>iframe for CSS Test: Sticky Positioning - continuations have no effect when resizing</title> 1.10 + <link rel="author" title="Abel Lin" href="mailto:alin@mozilla.com"> 1.11 + <link rel="stylesheet" type="text/css" href="ahem.css"> 1.12 + <style> 1.13 + #scroll { 1.14 + height: 100px; 1.15 + overflow: hidden; 1.16 + font: 20px/1 Ahem; 1.17 + } 1.18 + #sticky { 1.19 + display: inline; 1.20 + position: sticky; 1.21 + top: 20px; 1.22 + } 1.23 + </style> 1.24 + </head> 1.25 + <body> 1.26 + <div id="scroll"> 1.27 + <div id="sticky"> 1.28 + <div>in block</div> 1.29 + after block 1.30 + </div> 1.31 + </div> 1.32 +</body> 1.33 +</html>