summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1230466.html
blob: 46cf0627f8c48651ddcc5961c00dfb165e872471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<body>
  <script>
    var b = document.createElement("body");
    b.style.overflow = "scroll";
    var h = document.documentElement;
    h.insertBefore(b, h.firstChild);
    b.offsetWidth;
    b.remove();
  </script>
</html>