summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/border-reduce-height.html
blob: db0310a6ba25e814a4775ae368d617f8e1d157ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
  <head>
    <style>
      div { box-sizing: border-box;
            width: 60px;
            height: 20px;
            border: 2px solid black;
            background: green;
            position: absolute;
            top: 12px;
            left: 12px;
            border-radius: 5px 20px 5px 20px;
          }
    </style>
  </head>
  <body>
    <div></div>
  </body>
</html>