mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
565 B
HTML
25 lines
565 B
HTML
<!DOCTYPE HTML>
|
|
<title>Test for clipping of border-radius</title>
|
|
<style>
|
|
body > div {
|
|
/* padding box is 100px by 200px */
|
|
display: inline-block; /* so margin doesn't collapse with body's */
|
|
height: 99px;
|
|
width: 194px;
|
|
overflow: hidden;
|
|
border-color: transparent;
|
|
border-style: solid;
|
|
border-width: 1px 2px 4px 8px;
|
|
padding: 0px 1px 1px 5px;
|
|
margin: 17px;
|
|
border-radius: 25px 17px 14px 18px / 12px 15px 18px 17px;
|
|
}
|
|
body > div > div {
|
|
background: lime;
|
|
height: 100px;
|
|
width: 200px;
|
|
margin-left: -5px;
|
|
}
|
|
</style>
|
|
<div><div></div></div>
|