diff options
Diffstat (limited to 'layout/reftests/table-dom/insertColGroups2-ref.html')
-rw-r--r-- | layout/reftests/table-dom/insertColGroups2-ref.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/table-dom/insertColGroups2-ref.html b/layout/reftests/table-dom/insertColGroups2-ref.html new file mode 100644 index 0000000000..875ed95507 --- /dev/null +++ b/layout/reftests/table-dom/insertColGroups2-ref.html @@ -0,0 +1,20 @@ +<HEAD> +</HEAD> +<BODY> +<table bgcolor=orange border> + <colgroup> + <col width=50> + </colgroup> + <colgroup> + <col width=100> + <col width=150> + </colgroup> + <colgroup> + <col width=200> + </colgroup> + <tr> + <td>50</td><td>100</td><td>150</td><td>200</td> + </tr> +</table> +</BODY></HTML> + |