wpt / css / css-sizing / responsive-iframe / responsive-iframe.html

Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-sizing/responsive-iframe/responsive-iframe.html

<!doctype HTML>
<title>Test that a same-origin iframe is responsively sized.</title>
<link rel="author" href="mailto:chrishtr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-sizing/">
<link rel="match" href="responsive-iframe-ref.html">
<style>
iframe {
  border: 1px solid black;
  frame-sizing: content-height;
}
</style>
<iframe frameborder=0 src="resources/iframe-contents.html">
</iframe>

/css/css-sizing/responsive-iframe/responsive-iframe-ref.html

<!doctype HTML>
<style>
div {
   width: 300px;
   height: 400px;
   border: 1px solid black;
}
</style>
<div>
</div>