summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html b/testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html
new file mode 100644
index 0000000000..f6b25134f4
--- /dev/null
+++ b/testing/web-platform/tests/css/css-tables/border-collapse-empty-cell-ref.html
@@ -0,0 +1,21 @@
+<!doctype HTML>
+<style>
+ table {
+ border-collapse: collapse;
+ }
+ td {
+ width:50px;
+ height:50px;
+ border: 10px solid gray;
+ }
+</style>
+<table>
+ <tr>
+ <td></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td></td>
+ </tr>
+</table>