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