1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02: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>