mirror of
https://github.com/servo/servo
synced 2026-04-29 19:07:38 +02:00
32 lines
333 B
HTML
32 lines
333 B
HTML
<!doctype html>
|
|
<link rel="match" href="table-width-ref.html">
|
|
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
|
|
<!-- width=0 should be treated as 'auto' -->
|
|
<table width=0>
|
|
<tr>
|
|
<td>
|
|
a b
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<table width=1>
|
|
<tr>
|
|
<td>
|
|
a b
|
|
</td>
|
|
</tr>
|
|
</table>
|