summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1364360-1-ref.html
blob: 17fc280db31456ef6fc622029280f796737d9ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- Quirks mode on purpose -->
<html>
  <body style="margin: 0; padding: 0; border: none;"></body>
  <script>
    var html = document.documentElement;
    var div = document.createElement("div");
    div.style.height = "4000px";
    html.appendChild(div);
    html.appendChild(document.createTextNode("text"));
    div = document.createElement("div");
    div.style.height = "4000px";
    html.appendChild(div);
    document.body.scrollTop = 4000;
  </script>
</html>