-
-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix overflow for tables with collapsing borders and ignore "overflow-wrap: break-word" when calculating min-content intrinsic sizes #582
Comments
Minimal use case: <style>
body {
word-wrap: break-word;
}
table {
border-collapse: collapse;
display: block;
overflow: auto;
}
th, td {
border: 1px solid;
}
</style>
<table>
<tbody>
<tr>
<td>Non numquam</td>
<td>Eaque ipsa quae ab illo inventore veritatis et quasi</td>
<td>Cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia.</td>
</tr>
</tbody>
</table>
|
For the record, the spec says:
|
liZe
added a commit
that referenced
this issue
Mar 5, 2018
Without that, tables with "overflow: auto" don't draw their borders. Related to #582.
liZe
added a commit
that referenced
this issue
Mar 5, 2018
liZe
changed the title
Table rendering flaws
Fix overflow for tables with collapsing borders and ignore "overflow-wrap: break-word" when calculating min-content intrinsic sizes
Mar 5, 2018
liZe
added a commit
that referenced
this issue
Mar 27, 2018
Without that, tables with "overflow: auto" don't draw their borders. Related to #582.
liZe
added a commit
that referenced
this issue
Mar 27, 2018
liZe
added a commit
that referenced
this issue
Mar 27, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Source file
Expected result (rendered with Prince 11.3)
Actual result (rendered with weasyprint 0.42.2)
Discrepancies
The text was updated successfully, but these errors were encountered: