summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/intersecting-clipping-1-overflow-hidden.html
blob: 38e2e3f48c32f8efb478599a29ddbca42618d7dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<title>Test for clipping of border-radius</title>
<style>
body > div {
  overflow: hidden;
  width: 200px;
  height: 100px;
  border-radius: 50px / 20px;
}
body > div > div {
  border-radius: 20px / 40px;
  overflow: hidden;
  width: 200px;
  height: 100px;
  background: lime;
}
</style>
<div><div></div></div>