-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a test for no pointerout event is fired if the pointer doesn't move
This is a test for w3c/pointerevents#457. Differential Revision: https://phabricator.services.mozilla.com/D179045 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1529904 gecko-commit: 575a2c919e5c876e6937a9b7dd8db519d6224dd0 gecko-reviewers: smaug
- Loading branch information
1 parent
9079b57
commit bac285c
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
pointerevents/pointerevent_pointerout_no_pointer_movement.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |