Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 1 times in the preceding 30 days. quicksearch this test
- Manifest: dom/events/test/pointerevents/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<meta charset="utf-8">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1285128">Mozilla Bug 1285128</a>
<p id="display"></p>
<div id="target0" style="width: 50px; height: 50px; background: green"></div>
<div id="target1" style="width: 50px; height: 50px; background: red"></div>
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
function runTests() {
let target0 = window.document.getElementById("target0");
let pointerEventsList = ["pointerover", "pointerenter", "pointerdown",
"pointerup", "pointerleave", "pointerout"];
const pointerEvents = [];
pointerEventsList.forEach((elem, index, arr) => {
target0.addEventListener(elem, event => pointerEvents.push(event.type));
});
target1.addEventListener("mouseup", () => {
is(
pointerEvents.join(", "),
[
"pointerover", // Should be caused by the synthesized mousemove
"pointerenter",
"pointerout", // Should be caused by clicking target1
"pointerleave",
].join(", "),
"Synthesizing mousemove should cause only pointer boundary events"
);
SimpleTest.finish();
});
synthesizeMouseAtCenter(target0, { type: "mousemove",
inputSource: MouseEvent.MOZ_SOURCE_MOUSE,
isWidgetEventSynthesized: true });
synthesizeMouseAtCenter(target1, { type: "mousedown" });
synthesizeMouseAtCenter(target1, { type: "mouseup" });
}
SimpleTest.waitForFocus(runTests);
</script>
</body>
</html>