scrollbar-width-paint-004.html (699B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <meta charset="utf-8"> 4 <title>CSS Scrollbars: scrollbar-width on viewport none -> thin</title> 5 <link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev"> 6 <link rel="match" href="scrollbar-width-paint-004-ref.html"> 7 <link rel="mismatch" href="scrollbar-width-paint-004-mis-ref.html"> 8 <link rel="help" href="https://www.w3.org/TR/css-scrollbars-1/"> 9 <script src="/common/reftest-wait.js"></script> 10 <style> 11 :root { 12 overflow: scroll; 13 scrollbar-width: none; 14 } 15 </style> 16 <script> 17 requestAnimationFrame(() => requestAnimationFrame(() => { 18 document.documentElement.style.scrollbarWidth = 'thin'; 19 takeScreenshot(); 20 })); 21 </script>