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

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=800">
<style>
body { width: 800px; margin: 0; }
</style>
<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-expected.html'>
</body>
</html>