diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-004.html')
-rw-r--r-- | testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-004.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-004.html b/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-004.html new file mode 100644 index 0000000000..6f5b4d300c --- /dev/null +++ b/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-004.html @@ -0,0 +1,21 @@ +<!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"> +<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: none; + } +</style> +<script> + requestAnimationFrame(() => requestAnimationFrame(() => { + document.documentElement.style.scrollbarWidth = 'thin'; + takeScreenshot(); + })); +</script> |