scrollbar-width-paint-003.html (754B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <meta charset="utf-8"> 4 <title>CSS Scrollbars: scrollbar-width correctly updates with overflow: scroll</title> 5 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 6 <link rel="author" title="Mozilla" href="https://mozilla.org"> 7 <link rel="match" href="scrollbar-width-paint-003-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: thin; 14 scrollbar-color: green green; 15 } 16 </style> 17 <script> 18 requestAnimationFrame(() => requestAnimationFrame(() => { 19 document.documentElement.style.scrollbarWidth = 'auto'; 20 takeScreenshot(); 21 })); 22 </script>