blob: 20f8e18363f126c88af830154212ea7610516d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- Quirks mode on purpose -->
<html>
<body style="display: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>
|