1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/751012-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +<!doctype html> 1.5 +<body style="position: relative"> 1.6 + <div id="container" style="position: relative; height: 300px"> 1.7 + <div style="position:absolute; top: 0; left: 0"> 1.8 + <textarea rows="6"> 1.9 + You should be seeing the "Should see me" text. 1.10 + a 1.11 + b 1.12 + c 1.13 + d 1.14 + e 1.15 + f 1.16 + g 1.17 + h 1.18 + i 1.19 + j 1.20 + k 1.21 + l 1.22 + m 1.23 + n 1.24 + o 1.25 + p 1.26 + q 1.27 + r 1.28 + s 1.29 + t 1.30 + u 1.31 + Should see me. 1.32 + </textarea> 1.33 + </div> 1.34 + </div> 1.35 + <script> 1.36 + var textarea = document.querySelector("textarea"); 1.37 + textarea.scrollTop = textarea.scrollHeight 1.38 + document.getElementById("container").style.overflow = "hidden"; 1.39 + </script> 1.40 +</body>