Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scrollbars/scrollbar-width-paint-004.html - WPT Dashboard Interop Dashboard
<!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:luke@warlow.dev">
<link rel="match" href="scrollbar-width-paint-004-ref.html">
<link rel="mismatch" href="scrollbar-width-paint-004-mis-ref.html">
<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>