blob: 5b9c9c36bc7fe5246fe1746a148f3defb627ce15 [file] [log] [blame] [edit]
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Scrollbars: scrollbar-width on viewport none -> thin</title>
<link rel="author" title="Luke Warlow" href="mailto:[email protected]">
<link rel="match" href="scrollbar-width-paint-004-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: none;
}
</style>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => {
document.documentElement.style.scrollbarWidth = 'thin';
takeScreenshot();
}));
</script>