blob: 68a468bfd97ba5b5afe019506d8c64132579e1cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>Long scrolling should work properly</title>
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://www.w3.org/TR/cssom-view/#scrolling">
<link rel="match" href="long_scroll_composited-ref.html">
<style>
.post {
height: 1000px;
width: 300px;
border: 1px solid black;
}
.scroller {
overflow-y: scroll;
width: 500px;
height: 500px;
will-change: transform;
}
::-webkit-scrollbar {
display: none;
}
</style>
<p>The number 7 should be visible in the scrolled window below.</p>
<div id="scroller" class="scroller">
<div style="position: relative;">
<div style="position: relative;">
<div class="post">0</div>
<div class="post">1</div>
<div class="post">2</div>
<div class="post">3</div>
<div class="post">4</div>
<div class="post">5</div>
<div class="post">6</div>
<div class="post">7</div>
<div class="post">8</div>
<div class="post">9</div>
</div>
</div>
</div>
<script>
onload = function() {
scroller=document.getElementById("scroller");
scroller.scrollTop = 6800;
};
</script>
|