summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/curved-stripe-border.html
blob: 1f962765d1959e6ffb1400d714f2d1b7a1de275f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html><head>
<title>Curved stripe border (HTML)</title>
<style>
body { margin: 0 }
div {
  box-sizing: border-box;
  width: 180px;
  height: 180px;
  border: 30px double black;
  border-radius: 60px / 40px;
  margin: 20px;
}
</style>
</head><body>
<div></div>
</body></html>