diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/table-background/hidden-cells-1.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/table-background/hidden-cells-1.html b/layout/reftests/table-background/hidden-cells-1.html new file mode 100644 index 0000000000..1b11d4b2d5 --- /dev/null +++ b/layout/reftests/table-background/hidden-cells-1.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<table style="width: 200px; height: 200px; empty-cells: hide; color: white"> + <colgroup style="background: red"> + <col style="background: red"> + </colgroup> + <tbody style="background: red"> + <tr style="background: red"> + <td></td> + <td style="visibility: hidden">X</td> + </tr> + </tbody> +</table> |