mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e4c76eccb0
This was generated with the command: LC_ALL=C grep -irlEZe '[-_]moz[-_]border[-_]radius([-_](top|bottom)(right|left))?' * | xargs -0 perl -pi -e \ 's/-moz-border-radius-(top|bottom)(left|right)/border-${1}-${2}-radius/gi; s/_moz_border_radius_(top|bottom)Right/border_${1}_right_radius/g; s/_moz_border_radius_(top|bottom)Left/border_${1}_left_radius/g; s/-moz-border-radius/border-radius/gi; s/_moz_border_radius/border_radius/g;'
56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<!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 > canvas {
|
|
border-radius: 20px / 40px;
|
|
}
|
|
|
|
#contain > div.spot {
|
|
position: absolute;
|
|
height: 1px;
|
|
width: 1px;
|
|
}
|
|
|
|
</style>
|
|
<div id="contain">
|
|
<div><canvas id="canvas" height="100" width="200"></canvas></div>
|
|
<script>
|
|
var canvas = document.getElementById("canvas");
|
|
var cx = canvas.getContext("2d");
|
|
cx.fillStyle="green";
|
|
cx.fillRect(0, 0, 200, 100);
|
|
</script>
|
|
|
|
<!--
|
|
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: green"></div>
|
|
<div class="spot" style="top: 89px; left: 8px; background: green"></div>
|
|
<div class="spot" style="top: 10px; left: 191px; background: green"></div>
|
|
<div class="spot" style="top: 89px; left: 191px; background: green"></div>
|
|
|
|
</div>
|