chromium/third_party/blink/web_tests/compositing/scaling/tiled-layer-recursion.html

<!DOCTYPE html>

<html>
<head>
  <style>
    ::-webkit-scrollbar {
      width: 0px;
      height: 0px;
    }
    .composited {
      background-color: green;
      width: 200px;
      height: 1333px;
      will-change: transform;
    }
  </style>
  <script>
    function scalePage()
    {
      if (window.internals)
        internals.setPageScaleFactor(1.50025);
    }

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