From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann <daniel.baumann@progress-linux.org> Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org> --- .../intersecting-clipping-1-refi.html | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 layout/reftests/border-radius/intersecting-clipping-1-refi.html (limited to 'layout/reftests/border-radius/intersecting-clipping-1-refi.html') diff --git a/layout/reftests/border-radius/intersecting-clipping-1-refi.html b/layout/reftests/border-radius/intersecting-clipping-1-refi.html new file mode 100644 index 0000000000..c21a147252 --- /dev/null +++ b/layout/reftests/border-radius/intersecting-clipping-1-refi.html @@ -0,0 +1,51 @@ +<!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 > img { + border-radius: 20px / 40px; + width: 200px; + height: 100px; +} + +#contain > div.spot { + position: absolute; + height: 1px; + width: 1px; +} + +</style> +<div id="contain"> +<div><img src="../pixel-rounding/lime-25x25.png" alt=""></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> -- cgit v1.2.3