summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/border-circle-2.html
blob: 6ad0321abc6a16bbd42410c7e3e0e208affa3fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html><head>
<title>Circular border</title>
<style>
body { margin: 0 }
div {
  margin-left: 8px; margin-top: 8px;
  width: 50px; height: 50px; 
  border: 10px solid black; 
  border-radius: 10px;
}
div > div {
  margin: 0; width: 50px; height: 50px;
  border-radius: 0;
  background: black;
  border: none;
}
</style>
</head>
<body><div><div></div></div></body></html>