chromium/third_party/blink/web_tests/http/tests/text-autosizing/narrow-iframe.html

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=800">
<style>
body { width: 800px; margin: 0; }
</style>
<script src="resources/autosizingTest.js"></script>
<script>
  if (window.testRunner)
    testRunner.waitUntilDone();

  function done() {
    if (window.testRunner) {
      requestAnimationFrame(()=> {
        requestAnimationFrame(()=> {
          testRunner.notifyDone();
        });
      });
    }
  }
</script>
</head>
<body>
  <iframe
      onload="done()" style="width: 100%; height: 300px; border: 0"
      src="http://localhost:8000/text-autosizing/resources/narrow-iframe.html">
</body>
</html>