1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/position-sticky/block-in-inline-continuations.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 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>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="match" href="block-in-inline-continuations-ref.html"> 1.12 + <meta name="assert" content="Inline elements split and contain blocks should always have all parts moved the same offset from their normal position"> 1.13 + <script> 1.14 + function run() { 1.15 + document.getElementById("toresize").width = "750px"; 1.16 + } 1.17 + </script> 1.18 + </head> 1.19 + <body onload="run()"> 1.20 + <iframe id="toresize" src="block-in-inline-continuations-inner.html"> 1.21 + </iframe> 1.22 + </body> 1.23 +</html>