Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / table-border-radius-with-box-shadow.html
blobc5577c6ee4455abda257615ff24a59f8d4462611
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 table {
6 width: 200px;
7 height: 100px;
8 border-spacing: 0px;
10 .round {
11 border-radius: 10px;
13 .shadow {
14 box-shadow: 0 10px 2px rgba(0, 0, 0, 0.5);
16 .border {
17 border: 1px solid blue;
19 </style>
20 </head>
21 <body>
22 <!-- [bug 110196] https://bugs.webkit.org/show_bug.cgi?id=110196 -->
23 <!-- LayoutTable::paintBoxDecorationBackground sometimes draws box-shadow twice. -->
24 <table class="shadow border round">
25 </table>
26 </body>
27 </html>