wpt / css / css-contain / contain-size-scrollbars-001.html

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

/css/css-contain/contain-size-scrollbars-001.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Size containment scrollbars</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-size">
<link rel="match" href="reference/contain-size-scrollbars-001-ref.html">
<meta name=assert content="This test checks that the size of an element with 'contain: size' includes the scrollbars too.">
<style>
div {
  contain: size;
  display: inline-block;
  border: solid thick;
  overflow: scroll;
}
</style>
<p>This test passes if it has the same output as the reference.</p>
<div>FAIL</div>

/css/css-contain/reference/contain-size-scrollbars-001-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Reference file</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<style>
div {
  display: inline-block;
  border: solid thick;
  overflow: scroll;
}
</style>
<p>This test passes if it has the same output as the reference.</p>
<div></div>