diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /layout/reftests/border-radius/scrollbar-clamping-2.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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> |