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
75
76
77
78
79
80
81
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="timeout" content="long">
<meta name="variant" content="?duration=16"> <!-- 60fps -->
<meta name="variant" content="?duration=42"> <!-- 24fps -->
<title>Check whether `mouseup` events are fired after pending boundary events</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/testdriver.js></script>
<script src=/resources/testdriver-actions.js></script>
<script src=/resources/testdriver-vendor.js></script>
<style>
div#parent {
width: 100%;
height: 50px;
background-color: gray;
}
div#child {
width: 100%;
height: 40px;
background-color: lime;
}
</style>
</head>
<body>
<div id="parent"><div id="child"></div></div>
<script>
"use strict";
const searchParams = new URLSearchParams(document.location.search);
const duration = parseInt(searchParams.get("duration"));
async function runTest(t) {
const parent = document.getElementById("parent");
const child = document.getElementById("child");
const mouseEvents = [];
function onMouseOverOrUp(event) {
// Ignore events before `mousedown` to make this test simpler.
if (mouseEvents[0]?.startsWith("mousedown")) {
mouseEvents.push(`${event.type}@${event.target.localName}${event.target.id ? `#${event.target.id}` : ""}`);
}
}
try {
child.getBoundingClientRect(); // flush layout
child.addEventListener("mousedown", event => {
event.target.remove();
mouseEvents.push("mousedown@div#child");
}, {once: true});
document.addEventListener("mouseover", onMouseOverOrUp, {capture: true});
document.addEventListener("mouseup", onMouseOverOrUp, {once: true, capture: true});
const actions = new test_driver.Actions(duration);
await actions.pointerMove(10, 10, {origin: child})
.pointerDown({button: actions.ButtonType.LEFT})
.pointerUp({button: actions.ButtonType.LEFT})
.send();
await new Promise(resolve => requestAnimationFrame(() => requestAnimationFrame(resolve)));
assert_equals(
mouseEvents.toString(),
"mousedown@div#child,mouseover@div#parent,mouseup@div#parent",
t.name
);
} finally {
document.removeEventListener("mouseover", onMouseOverOrUp, {capture: true});
parent.appendChild(child);
}
}
// This test tries to detect intermittent case that mouseout might be fired
// after a while from a DOM tree change. Therefore, trying same test 30 times.
for (let i = 0; i < 30; i++) {
promise_test(async t => {
await runTest(t);
// Make things stabler to start next test.
await new Promise(resolve => requestAnimationFrame(() => requestAnimationFrame(resolve)));
}, `mouseover should be fired before mouseup if mousedown target is removed (${i})`);
}
</script>
</body>
</html>
|