wpt / css / css-scrollbars / scrollbar-width-paint-005.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-scrollbars/scrollbar-width-paint-005.html

<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Scrollbars: scrollbar-width multiple-updates on viewport thin -> auto -> none</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev">
<link rel="match" href="scrollbar-width-paint-005-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-scrollbars-1/">
<script src="/common/reftest-wait.js"></script>
<style>
  :root {
    overflow: scroll;
    scrollbar-width: thin;
  }
</style>
<script>
  requestAnimationFrame(() => requestAnimationFrame(() => {
    document.documentElement.style.scrollbarWidth = 'auto';

    requestAnimationFrame(() => requestAnimationFrame(() => {
      document.documentElement.style.scrollbarWidth = 'none';

      takeScreenshot();
    }));
  }));
</script>

/css/css-scrollbars/scrollbar-width-paint-005-ref.html

<!doctype html>
<title>CSS Test Reference</title>
<style>
  :root { overflow: hidden; }
</style>