fune/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table.html
Rob Buis ccbf84da19 Bug 1839212 [wpt PR 40624] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=251909, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=251909 (#40624)

--

wpt-commits: a6ab60357302e3baffbdfef7ff3a9e5b35320a86
wpt-pr: 40624
2023-06-28 09:47:06 +00:00

25 lines
598 B
HTML

<!DOCTYPE html>
<html><head><meta charset="utf-8">
<title>Verifies overflow-clip on table with rounded border renders correctly</title>
<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip">
<link rel="match" href="overflow-clip-rounded-table-ref.html">
<style>
table {
border-radius: 10px;
border-collapse: collapse;
overflow: clip;
}
thead {
background: green;
}
</style>
</head><body><p>You should see a green table with rounded corners</p>
<table>
<thead>
<tr>
<th>One</th>
<th>Two</th>
</tr>
</thead>
</table>
</body></html>