blob: 096eb16229039740135314ef3b0a6ad1bd74c3d3 (
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
|
<!DOCTYPE HTML>
<html>
<title>CSS Test Reference: differences in pointer-events shouldn't cause overlay scrollbars to appear</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>
#scroll {
width: 200px;
height: 200px;
overflow: auto;
}
#big {
width: 500px;
height: 500px;
}
</style>
<div id="scroll">
<div id="big">
</div>
</div>
|