summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1626259-2.html
blob: ec1b530785114226fdf4322f076f2b0e5929a2b0 (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
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
  <style>
    #outer {
      transform: scale(0.01);
      transform-style: preserve-3d;
    }

    #inner {
      transform: scale(100);
    }

    #scale {
      width: 200px;
      height: 200px;
      animation: flyR 5s infinite;
    }

    @keyframes flyR {
      from {
        transform: scale(1);
      }

      to {
        transform: scale(1.000000001);
      }
    }

  </style>
</head>
<body>
  <div id="outer">
    <div id="inner">
      <img id="scale" src="repeatable-diagonal-gradient.png">
    </div>
  </div>
</body></html>