summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/box-shadow/shadow-tiling-artifact.html
blob: 0ab994d69d8eed0ac9463da044a83d93c1c4e5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>

<html>
<head>
  <style type="text/css">
    .box {
      height: 200px;
      width: 200px;
      margin: 50px;
      border-radius: 20px;
      border-top-left-radius: 60px;
      border-bottom-right-radius: 40px;
      box-shadow: 230px 0 15px rgba(0, 0, 0, 0.5);
    }
  </style>
</head>
<body>
  <!-- Should be a smooth shadow with no overdrawing artifacts -->
  <div class="box"></div>
</body>
</html>