blob: 986c7b8477999d5c05da209154a76bd258a1f80b (
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
51
52
53
54
55
56
|
<!DOCTYPE HTML>
<html>
<head>
<title>APZ hit-testing with floated subframe</title>
<script type="application/javascript" src="apz_test_utils.js"></script>
<script type="application/javascript" src="apz_test_native_event_utils.js"></script>
<script src="/tests/SimpleTest/paint_listener.js"></script>
<meta name="viewport" content="width=device-width"/>
<style>
#float {
float: left;
}
#subframe {
overflow: scroll;
height: 300px;
}
#subframe-content {
width: 300px;
height: 2000px;
background: cyan;
}
#make-root-scrollable {
height: 5000px;
}
</style>
</head>
<body>
<div id="float">
<div id="subframe">
<div id="subframe-content"></div>
</div>
</div>
<div id="make-root-scrollable"></div>
</body>
<script type="application/javascript">
async function test() {
var utils = getHitTestConfig().utils;
hitTestScrollbar({
element: document.getElementById("subframe"),
directions: { vertical: true },
expectedScrollId: utils.getViewId(document.scrollingElement),
expectedLayersId: utils.getLayersId(),
trackLocation: ScrollbarTrackLocation.START,
expectThumb: true,
layerState: LayerState.INACTIVE,
});
}
waitUntilApzStable()
.then(test)
.then(subtestDone, subtestFailed);
</script>
</html>
|