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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!DOCTYPE HTML>
<html>
<head>
<title>APZ hit-testing of fixed content when async-scrolled</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>
html, body {
margin: 0;
}
#fixed {
position: fixed;
height: 300px;
width: 100%;
top: 0;
background: blue;
}
#target {
margin-top: 100px;
margin-left: 100px;
height: 20px;
width: 20px;
background: red;
}
</style>
</head>
<body>
<div id="fixed">
<div id="target"></div>
</div>
<div id="make_root_scrollable" style="height: 5000px"></div>
</body>
<script type="application/javascript">
async function test() {
// Async scroll the page by 50 pixels using the mouse-wheel.
await promiseMoveMouseAndScrollWheelOver(document.body, 10, 10,
/* waitForScroll = */ false, /* scrollDelta = */ 50);
let clickPromise = new Promise(resolve => {
target.addEventListener("click", e => {
ok(true, "Target was hit");
e.stopPropagation(); // do not propagate event to |fixed| ancestor
resolve();
});
fixed.addEventListener("click", e => {
// Since target's listener calls stopPropagation(), if we get here
// then the coordinates of the click event did not correspond to
// |target|, but somewhere else on |fixed|.
ok(false, "Fixed ancestor should not be hit");
resolve();
});
});
// Synthesize a click at (110, 110), which should hit |target| (a
// descendant of |fixed|) regardless of the async scroll.
await synthesizeNativeMouseEventWithAPZ({
type: "click",
target: window,
offsetX: 110,
offsetY: 110
});
await clickPromise;
}
waitUntilApzStable()
.then(test)
.then(subtestDone, subtestFailed);
</script>
</html>
|