mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:47:45 +00:00
LibWeb: Paint separate borders for inline tables
This commit is contained in:
parent
c838bb3f21
commit
a18500c78c
4 changed files with 37 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"square-flex.html": "square-ref.html"
|
||||
"square-flex.html": "square-ref.html",
|
||||
"separate-borders-inline-table.html": "separate-borders-ref.html"
|
||||
}
|
||||
|
|
17
Tests/LibWeb/Ref/separate-borders-inline-table.html
Normal file
17
Tests/LibWeb/Ref/separate-borders-inline-table.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<style type="text/css">
|
||||
td {
|
||||
border: 5px solid blue;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
table {
|
||||
border: 5px solid black;
|
||||
display: inline-block;
|
||||
border-collapse: separate;
|
||||
}
|
||||
</style>
|
||||
<table>
|
||||
<tr>
|
||||
<td>A</td>
|
||||
</tr>
|
||||
</table>
|
16
Tests/LibWeb/Ref/separate-borders-ref.html
Normal file
16
Tests/LibWeb/Ref/separate-borders-ref.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<style type="text/css">
|
||||
td {
|
||||
border: 5px solid blue;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
table {
|
||||
border: 5px solid black;
|
||||
border-collapse: separate;
|
||||
}
|
||||
</style>
|
||||
<table>
|
||||
<tr>
|
||||
<td>A</td>
|
||||
</tr>
|
||||
</table>
|
Loading…
Add table
Add a link
Reference in a new issue