summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/1505934-1.html
blob: 67475fecf99456d4dbdee88bc1bbedae59105fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<style>
  body {
      background-color: limegreen;
  }
  .A {
      transform: scale(0.01) perspective(1000px);
      transform-origin: 0% 0%;
      filter: grayscale(40%);
  }
  .B {
      background-color: black;
      width: 10000px;
      height: 5000px;
      border-radius: 2000px;
  }
</style>
<body>
  <div class="A">
      <div class = "B"/>
  </div>
</body>