summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/cssom-view/long_scroll_composited-ref.html
blob: 3278d3346043ae6ac8e581b56ab06cdc34b6cf65 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Long scrolling should work properly</title>
<link rel="author" href="mailto:masonf@chromium.org">



<style>
.post {
  height: 1000px;
  width: 300px;
  border: 1px solid black;

}
.before {
  height: 213px;
  border-top: 0;
}
.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 before"></div>
      <div class="post">7</div>
    </div>
  </div>
</div>