1
0
Fork 0
firefox/layout/reftests/css-animations/background-position-in-delay.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
637 B
HTML

<!DOCTYPE html>
<title>background-position-x animation in delay phase</title>
<style>
@keyframes holdBackgroundPosition {
from,to { background-position-x: 100%; }
}
#test {
height: 100px;
width: 100px;
background-repeat: no-repeat;
background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF/wAAAAAAQaMSAwAAABJJREFUeNpiYBgFo2AwAIAAAwACigABtnCV2AAAAABJRU5ErkJggg==); /* a 25x25 px red box */
animation: holdBackgroundPosition 100s 100s infinite;
background-position-x: 50%;
}
</style>
<div id="test" class="reftest-opaque-layer"></div>