1
0
Fork 0
firefox/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-003.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
754 B
HTML

<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Scrollbars: scrollbar-width correctly updates with overflow: scroll</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="match" href="scrollbar-width-paint-003-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;
scrollbar-color: green green;
}
</style>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => {
document.documentElement.style.scrollbarWidth = 'auto';
takeScreenshot();
}));
</script>