summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/scaling/tiled-layer-recursion.html
blob: f8b189fd901842258c15896f817c63ae3ffa5bc0 (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
<!DOCTYPE html>

<html>
<head>
  <style>
    .composited {
      background-color: green;
      width: 200px;
      height: 1333px;
      -webkit-transform: translateZ(0);
    }
  </style>
  <script>
    if (window.layoutTestController)
      layoutTestController.dumpAsText(true);

    function scalePage()
    {
      eventSender.scalePageBy(1.50025, 0, 0);
    }
  
    window.addEventListener('load', scalePage, false);
  </script>
</head>
<body>
  <!-- This test should not crash. -->
  <div class="composited"></div>
</body>
</html>