blob: e8ba7a8a8b447e886e249870c83908faec1d720b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE HTML>
<html>
<body>
<p>Hello
<div style="height:10000px; width:100px; background:yellow"></div>
<script>
window.scrollTo(0,200);
document.documentElement.setAttribute("style", "overflow-y:hidden");
</script>
</body>
</html>
|