blob: 9ce46d296a6a8300d4c753d52d2d3d2a836e1c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Scrollbars: scrollbar-width multiple-updates on viewport thin -> auto -> none</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev">
<link rel="match" href="scrollbar-width-paint-005-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;
}
</style>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => {
document.documentElement.style.scrollbarWidth = 'auto';
requestAnimationFrame(() => requestAnimationFrame(() => {
document.documentElement.style.scrollbarWidth = 'none';
takeScreenshot();
}));
}));
</script>
|