chromium/third_party/blink/web_tests/fast/table/table-with-border-radius.html

<!doctype html>
<html>
<head>
<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>