diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/border-radius/intersecting-clipping-1-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/border-radius/intersecting-clipping-1-ref.html')
-rw-r--r-- | layout/reftests/border-radius/intersecting-clipping-1-ref.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/intersecting-clipping-1-ref.html b/layout/reftests/border-radius/intersecting-clipping-1-ref.html new file mode 100644 index 0000000000..0e4061a3f5 --- /dev/null +++ b/layout/reftests/border-radius/intersecting-clipping-1-ref.html @@ -0,0 +1,53 @@ +<!DOCTYPE HTML> +<title>Test for clipping of border-radius</title> +<style> +#contain { + width: 200px; + height: 100px; + position: relative; +} +#contain > div { + overflow: hidden; + width: 200px; + height: 100px; + border-radius: 50px / 20px; +} +#contain > div > div { + border-radius: 20px / 40px; + overflow: hidden; + width: 200px; + height: 100px; + background: lime; +} + +#contain > div.spot { + position: absolute; + height: 1px; + width: 1px; +} + +</style> +<div id="contain"> +<div><div></div></div> + +<!-- +This is just like the test, except we'll add a bunch of spots in various +places that should match the background of what they're on. +--> + +<div class="spot" style="top: 1px; left: 15px; background: white"></div> +<div class="spot" style="top: 14px; left: 2px; background: white"></div> +<div class="spot" style="top: 18px; left: 0px; background: white"></div> +<div class="spot" style="top: 82px; left: 198px; background: white"></div> +<div class="spot" style="top: 97px; left: 180px; background: white"></div> +<div class="spot" style="top: 2px; left: 180px; background: white"></div> +<div class="spot" style="top: 17px; left: 198px; background: white"></div> +<div class="spot" style="top: 97px; left: 19px; background: white"></div> +<div class="spot" style="top: 82px; left: 1px; background: white"></div> + +<div class="spot" style="top: 10px; left: 8px; background: lime"></div> +<div class="spot" style="top: 89px; left: 8px; background: lime"></div> +<div class="spot" style="top: 10px; left: 191px; background: lime"></div> +<div class="spot" style="top: 89px; left: 191px; background: lime"></div> + +</div> |