summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/scale-1a.html
blob: c5842292ed7d9ce57d6a7a6d8351e67a385e7bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
  <style>
    body { margin: 0px; }
    #test {
      background: green;
      width: 100px;
      height: 100px;
      transform: scale(0.5, 0.5);
    }
  </style>
</head>
<body>
  <div id="test">
  </div>
</body>
</html>