summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/table-border-radius-with-box-shadow.html
blob: c5577c6ee4455abda257615ff24a59f8d4462611 (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
25
26
27
<!doctype html>
<html>
<head>
  <style>
    table {
      width: 200px;
      height: 100px;
      border-spacing: 0px;
    }
    .round {
      border-radius: 10px;
    }
    .shadow {
      box-shadow: 0 10px 2px rgba(0, 0, 0, 0.5);
    }
    .border {
      border: 1px solid blue;
    }
  </style>
</head>
<body>
  <!-- [bug 110196] https://bugs.webkit.org/show_bug.cgi?id=110196 -->
  <!-- LayoutTable::paintBoxDecorationBackground sometimes draws box-shadow twice. -->
  <table class="shadow border round">
  </table>
</body>
</html>