diff options
Diffstat (limited to 'layout/reftests/table-html/cell-align-stopped-at-table-1-quirks-ref.html')
-rw-r--r-- | layout/reftests/table-html/cell-align-stopped-at-table-1-quirks-ref.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/table-html/cell-align-stopped-at-table-1-quirks-ref.html b/layout/reftests/table-html/cell-align-stopped-at-table-1-quirks-ref.html new file mode 100644 index 0000000000..2b84dcf3b7 --- /dev/null +++ b/layout/reftests/table-html/cell-align-stopped-at-table-1-quirks-ref.html @@ -0,0 +1,31 @@ +<title>Testcase, bug 196292</title> +<meta charset="UTF-8"> + +<table border width="500"> + <tr> + <td> + <p style="text-align: left">Left</p> + <table border width="300"> + <tr><th>Center</th></tr> + <tr><td>Left</td></tr> + </table> + </td> + </tr> + <tr> + <td> + <p style="text-align: center">Center</p> + <table border width="300" style="margin-left: auto; margin-right: auto"> + <tr><th>Center</th></tr> + <tr><td>Left</td></tr> + </table> + </td> + </tr> + <tr> + <td> + <p style="text-align: right">Right</p> + <table border width="300" style="margin-left: auto"> + <tr><th>Center</th></tr> + <tr><td>Left</td></tr> + </table> + </td> + </tr> |