summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/inherit-1.html
blob: 012e14799c979704ddcf5f38fd4a9ff224deefba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html><head>
<title>Border-radius inheritance</title>
<style>
.div1 { width: 100px; height: 100px;
      border: 10px solid black; 
      border-radius: 10px;
      left: 50px;
      top: 50px;
}

div > div {
  width: 40px; height: 40px;
  border: 10px solid black;
  position: absolute;
  left: 40px;
  top: 40px;
}

</style>
</head>
<body>
  <div class="div1"><div></div></div>
</body></html>