chromium/third_party/blink/web_tests/external/wpt/css/css-layout-api/constraints/support/constraints-fixed-block-size-quirky-body-iframe.html

<style>
body {
  margin: 0;
  --expected-block-size: 200;
}

.child {
  background: green;
}

@supports (display: layout(test)) {
  body {
    display: layout(test);
  }
}
</style>

<!-- In Quirks mode, we should stretch to 100% of the inital containing block. -->
<body>
<div class="child"></div>
</body>