2016-02-11 16:20:00 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-03-12 10:08:36 +03:00
|
|
|
<title>
|
|
|
|
Test that mouse movement immediately after finish() should involve
|
|
|
|
restyling for finished state (Bug 1228137)
|
|
|
|
</title>
|
2019-04-16 07:01:46 +03:00
|
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
<script src="/tests/SimpleTest/paint_listener.js"></script>
|
2016-02-11 16:20:00 +03:00
|
|
|
<script type="application/javascript"
|
|
|
|
src="animation_utils.js"></script>
|
2018-03-12 10:08:36 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
|
2016-02-11 16:20:00 +03:00
|
|
|
<style type="text/css">
|
|
|
|
@keyframes anim {
|
|
|
|
0% { transform: translateX(0px) }
|
|
|
|
100% { transform: translateX(100px) }
|
|
|
|
}
|
|
|
|
.target {
|
|
|
|
/* The animation target needs geometry in order to qualify for OMTA */
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="display"></div>
|
|
|
|
<script type="application/javascript">
|
2018-03-12 10:08:36 +03:00
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
|
2016-02-11 16:20:00 +03:00
|
|
|
window.onload = function () {
|
|
|
|
// To avoid the effect that newly created element's styles are
|
|
|
|
// not updated immediately, we need to add an element without
|
|
|
|
// animation properties first.
|
|
|
|
var [ div ] = new_div("");
|
|
|
|
div.setAttribute("id", "bug1228137");
|
|
|
|
|
|
|
|
waitForPaints().then(function() {
|
|
|
|
var initialRect = div.getBoundingClientRect();
|
|
|
|
|
|
|
|
// Now we can set animation properties.
|
|
|
|
div.style.animation = "anim 100s linear forwards";
|
|
|
|
|
|
|
|
div.addEventListener("mousemove", function(event) {
|
|
|
|
is(event.target.id, "bug1228137",
|
|
|
|
"The target of the animation should receive the mouse move event " +
|
|
|
|
"on the position of the animation's effect end.");
|
|
|
|
done_div();
|
2018-03-12 10:08:36 +03:00
|
|
|
SimpleTest.finish();
|
2017-01-17 13:50:25 +03:00
|
|
|
});
|
2016-02-11 16:20:00 +03:00
|
|
|
|
|
|
|
var animation = div.getAnimations()[0];
|
|
|
|
animation.finish();
|
|
|
|
|
|
|
|
// Mouse over where the animation is positioned at finished state.
|
|
|
|
// We can't use synthesizeMouse here since synthesizeMouse causes
|
|
|
|
// layout flush. We need to check the position without explicit flushes.
|
|
|
|
synthesizeMouseAtPoint(initialRect.left + initialRect.width / 2 + 100,
|
|
|
|
initialRect.top + initialRect.height / 2,
|
|
|
|
{ type: "mousemove" }, window);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|