diff options
Diffstat (limited to 'layout/reftests/outline/outline-table-caption.html')
-rw-r--r-- | layout/reftests/outline/outline-table-caption.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/layout/reftests/outline/outline-table-caption.html b/layout/reftests/outline/outline-table-caption.html new file mode 100644 index 0000000000..55e6a6e9d5 --- /dev/null +++ b/layout/reftests/outline/outline-table-caption.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<style> +table { outline: 1px solid blue; border-collapse: collapse; } +.caption, .cell { width: 100px; height: 100px; padding: 0; text-align: left; vertical-align: top; } +.caption { background-color: yellow; } +.cell { background-color: lime; } +</style> +<table> + <caption class="caption">Caption</caption> + <tr><td class="cell">Cell</td></tr> +</table> |