Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/overflow-clip-rounded-table.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html><head><meta charset="utf-8">
<title>Verifies overflow-clip on table with rounded border renders correctly</title>
<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>