wpt / css / css-position / hypothetical-box-scroll-viewport.html

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

/css/css-position/hypothetical-box-scroll-viewport.html

<!doctype html>
<meta charset=utf-8>
<title></title>
<link rel=match href=hypothetical-box-scroll-viewport-ref.html>
<link rel="help"
      href="https://www.w3.org/TR/CSS2/visudet.html#abs-non-replaced-width">
<div style="position: absolute">Original text</div>
<div style="width: 200vw; height: 10px"></div>
<script>
  // Scroll the viewport.
  window.scrollTo(window.innerWidth * 2, 0);

  // Now force relayout of the abs pos div.
  document.querySelector("div").textContent = "Modified text";
</script>

/css/css-position/hypothetical-box-scroll-viewport-ref.html

<!doctype html>
<meta charset=utf-8>
<div>Modified text</div>
<div style="width: 200vw; height: 10px"></div>
<script>
  window.scrollTo(window.innerWidth * 2, 0);
</script>