summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/corner-2.html
blob: cd860e843ac6f21d41ecde13c348e446dab607a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html><head>
<title>Corners different</title>
<style>
.div1 { width: 50px; height: 50px;
      border: 10px solid black; 
      border-radius: 10px 6px 6px 10px;
      position: absolute;
      background: black;
      left: 50px;
      top: 50px;
}

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