summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/table-with-border-radius.html
blob: 54fb434985aa9c9c597693c3ad8f132426015ad1 (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
28
29
<!doctype html>
<html>
<head>
<script>
if (window.testRunner)
    testRunner.dumpAsTextWithPixelResults();
</script>
<style>
.tableWithBorderRadius {
    background-color: lightgrey;
    border: 1px solid black;
    border-radius: 5px;
    display: table;
    width: 100px;
    height: 100px;
}

.description {
    font-size: 0px;
}
</style>
</head>
<body>
<div class="tableWithBorderRadius"></div>
<div class="description">Test for crbug.com/305216: Borders for CSS tables don't display when border-radius is used.<br>
If this test passes, rounded black borders will be shown.
</div>
</body>
</html>