summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html')
-rw-r--r--testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html81
1 files changed, 81 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html b/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html
new file mode 100644
index 0000000000..a163aef37f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-scrollbars/scrollbar-width-paint-002.html
@@ -0,0 +1,81 @@
+<!doctype html>
+<html class="reftest-wait">
+<title>CSS Scrollbars: paint test when updating scrollbar-width, with overflow:auto</title>
+<link rel="author" title="Felipe Erias Morandeira" href="mailto:felipeerias@gmail.com" />
+<link rel="match" href="scrollbar-width-paint-002-ref.html" />
+<link rel="mismatch" href="scrollbar-width-paint-002-mis-ref.html" />
+<link rel="help" href="https://www.w3.org/TR/css-scrollbars-1/" />
+<script src="/common/reftest-wait.js"></script>
+<style>
+ body {
+ display: flex;
+ flex-wrap: wrap;
+ }
+
+ .container {
+ scrollbar-gutter: stable;
+ overflow: scroll;
+ flex: 0 0;
+ height: 200px;
+ min-width: 200px;
+ margin: 1px;
+ padding: 0px;
+ border: none;
+ background: deepskyblue;
+ }
+
+ .content {
+ height: 100%;
+ width: 100%;
+ }
+
+ .container.auto {
+ scrollbar-width: auto;
+ }
+
+ .container.thin {
+ scrollbar-width: thin;
+ }
+
+ .container.none {
+ scrollbar-width: none;
+ }
+
+ .content.plain {
+ background: red;
+ }
+
+ .content.gradient {
+ background: linear-gradient(135deg, red, blue);
+ }
+</style>
+<div id="one" class="container auto">
+ <div class="content plain"></div>
+</div>
+<div id="two" class="container thin">
+ <div class="content plain"></div>
+</div>
+<div id="three" class="container none">
+ <div class="content plain"></div>
+</div>
+<div id="four" class="container auto">
+ <div class="content gradient"></div>
+</div>
+<div id="five" class="container thin">
+ <div class="content gradient"></div>
+</div>
+<div id="six" class="container none">
+ <div class="content gradient"></div>
+</div>
+<script>
+ requestAnimationFrame(() => requestAnimationFrame(() => {
+ document.getElementById('one').style.scrollbarWidth = 'thin';
+ document.getElementById('two').style.scrollbarWidth = 'auto';
+ document.getElementById('three').style.scrollbarWidth = 'auto';
+ document.getElementById('four').style.scrollbarWidth = 'none';
+ document.getElementById('five').style.scrollbarWidth = 'none';
+ document.getElementById('six').style.scrollbarWidth = 'thin';
+
+ takeScreenshot();
+ }));
+</script>