1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/abs-pos/scrollframe-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <body onload="loaded()"> 1.7 + <div style="position: relative; top: 100px; overflow: scroll; width: 100px; height: 100px;"> 1.8 + <div style="height: 200px"></div></div> 1.9 + <script> 1.10 + function loaded() { 1.11 + var insPoint = document.querySelector("div"); 1.12 + insPoint.scrollTop = 50; 1.13 + } 1.14 + </script> 1.15 + </body> 1.16 +</html>