summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/1569215-1.html
blob: b1b199ab631345d17f56240fc1838f59b5c75445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<style>
path {
  stroke: #000;
  fill: none;
}

#pp {
  animation: flyR 5s infinite;
}

@keyframes flyR {
  from {
    transform: translate(9px);
  }

  50% {
    transform: translate(4.5px);
  }

  to {
    transform: translate(0px);
  }
}
</style>

<svg width="500" height="500" viewBox="105 125 20 20">
  <path id="pp" d="m 95,130 h 36" />
</svg>