blob: 856f2ce37cec59f70dc1a9ad4d3fe0436da3e4cd (
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
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
82
83
84
85
|
<!doctype html>
<html>
<head>
<title>The pointerout event should not be fired if the pointer doesn't move</title>
<meta name="viewport" content="width=device-width">
<link rel="help" href="https://github.com/w3c/pointerevents/issues/457">
<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>
#target{
width:100px;
height:100px;
background-color:red;
}
#overlay{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,0.2);
z-index: 1000;
text-align: center;
display:none;
}
</style>
</head>
<body>
<h1>The pointerout event should not be fired if the pointer doesn't move</h1>
<h4>
Test Description: This test checks if the pointerout event dispatched unexpectedly.
<ol>
<li>Click on the black rectangle.
<li>Don't move mouse after clicking.
</ol>
</h4>
<p>
<div id="target"></div>
<div id="overlay"></div>
<div id="log"></div>
<script>
function waitForAnimationFrame() {
return new Promise(resolve => {
requestAnimationFrame(() => {
requestAnimationFrame(resolve);
});
});
}
promise_test(async () => {
const target = document.getElementById("target");
let out_event_count = 0;
target.addEventListener("pointerout", function() {
out_event_count++;
});
// Wait for the click event on target element and update display style on
// overlay element.
const promise = new Promise(resolve => {
target.addEventListener("click", async function() {
const overlay = document.getElementById("overlay");
overlay.style.display= 'block';
await waitForAnimationFrame();
overlay.style.display= 'none'
await waitForAnimationFrame();
resolve();
}, { once: true });
});
// Click target.
test_driver.click(target);
await promise;
assert_equals(out_event_count, 0, "The pointerout event should not be fired");
}, "The pointerout event should not be fired if the pointer doesn't move");
</script>
</body>
</html>
|