| <!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> |