mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
style: Address review comments relating to bgcolor
and column spans
This commit is contained in:
parent
17835ba0cb
commit
a1ea44b294
33 changed files with 712 additions and 422 deletions
26
tests/ref/table_colspan_fixed_ref.html
Normal file
26
tests/ref/table_colspan_fixed_ref.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<style>
|
||||
table {
|
||||
table-layout: fixed;
|
||||
width: 300px;
|
||||
}
|
||||
td.two {
|
||||
background-color: blue;
|
||||
color: white;
|
||||
}
|
||||
td.three {
|
||||
background-color: green;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<table border=0 cellspacing=0 cellpadding=0>
|
||||
<tr><td width=100> </td><td width=100> </td><td width=100> </td></tr>
|
||||
<tr><td class=two> </td><td class=two></td><td> </td></tr>
|
||||
<tr><td> <td class=two> </td><td class=two></td></tr>
|
||||
<tr><td class=three> </td><td class=three></td><td class=three></td></tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue