chromium/third_party/blink/renderer/core/testing/data/overscroll/div-overscroll.html

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, minimum-scale=1">
  <style type="text/css">
    #scrollable {
      width: 300px;
      height: 300px;
      overflow: scroll;
    }
    .content {
      width: 500px;
      height: 500px;
    }
    body {
      margin: 0px;
    }
  </style>
</head>

<body>
  <div id="scrollable">
    <div class="content"></div>
  </div>
</body>
</html>