summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/scale-percent-1.html
blob: a76ecd7edd05c7c3fe428c7a017c559b9cd4a4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
  <!-- Percent values are not allowed for scale, so this shouldn't do anything -->
  <style>
    body { margin: 0px; }
    div {
      background: green;
      width: 100px;
      height: 100px;
      -moz-transform: scale(50%, 50%);
    }
  </style>
</head>
<body>
  <div>
  </div>
</body>
</html>