chromium/third_party/blink/renderer/core/testing/data/200-by-800-viewport.html

<!DOCTYPE html>
<html>

<head>
  <meta name="viewport" content="width=200">
  <style>
    ::-webkit-scrollbar {
      width: 0px;
      height: 0px;
    }
    body {
      margin: 0px;
    }
    #content {
      background: silver;
      width: 200px;
      height: 800px;
    }
  </style>
</head>

<body>
  <div id="content">a</div>
</body>

</html>