summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug851445_helper.html
blob: dc4e4002e6517f0955504fc1d8a5ce10592c9e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
<body style="height:1000px">
<script>
var docElement = document.documentElement;
docElement.style.display = 'none';
docElement.offsetTop;
docElement.style.display = '';
</script>
</body>
</html>