summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/background-position-in-delay.html
blob: 0ddc220b2e6a9e7cbceff16497b596b4bbb1f624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>