diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /layout/reftests/border-radius/scrollbar-clamping-2.html | |
parent | Initial commit. (diff) | |
download | firefox-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 'layout/reftests/border-radius/scrollbar-clamping-2.html')
-rw-r--r-- | layout/reftests/border-radius/scrollbar-clamping-2.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/scrollbar-clamping-2.html b/layout/reftests/border-radius/scrollbar-clamping-2.html new file mode 100644 index 0000000000..177e102005 --- /dev/null +++ b/layout/reftests/border-radius/scrollbar-clamping-2.html @@ -0,0 +1,46 @@ +<!DOCTYPE HTML> +<title>Test of reduction of border-radius for scrollbars (background drawing)</title> +<style> + +.contain { height: 130px; position: relative } + +.test { + position: absolute; + top: 0; + left: 0; + border: medium solid transparent; + background: blue; + border-width: 2px 4px 8px 10px; + height: 100px; + width: 200px; + border-radius: 12px / 15px; +} + +.cover { + position: absolute; + width: 200px; + height: 100px; + top: 2px; + left: 10px; + background: blue; +} + +#x, #xy { overflow-x: scroll } +#y, #xy { overflow-y: scroll } + +</style> + +<div class="contain"> + <div class="test" id="x"></div> + <div class="cover" style="margin-top: 50px; height: 50px"></div> +</div> + +<div class="contain"> + <div class="test" id="y"></div> + <div class="cover" style="margin-left: 100px; width: 100px"></div> +</div> + +<div class="contain"> + <div class="test" id="xy"></div> + <div class="cover"></div> +</div> |