summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html b/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html
new file mode 100644
index 0000000000..5452c4efcf
--- /dev/null
+++ b/testing/web-platform/tests/css/css-overflow/overflow-clip-rounded-table-ref.html
@@ -0,0 +1,24 @@
+<!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">
+<style>
+table {
+ border-radius: 10px;
+ border-collapse: collapse;
+ overflow: hidden;
+}
+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>