You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create a very tall element with page-break-inside: avoid which does not fit to page, it leads to infinite looping and weasyprint never produce any result.
Test case:
<div style="page-break-inside: avoid;">
... lot of contents
</div>
The text was updated successfully, but these errors were encountered:
liZe
added
crash
Problems preventing documents from being rendered
bug
Existing features not working as expected
labels
Mar 8, 2016
I found out that in some cases it will work for <div>. But it will never work for <tbody> as follows:
<table>
<tbody style="page-break-inside: avoid;">
<tr><td>... lot of contents</td></tr>
<tr><td>... lot of contents</td></tr>
<tr><td>... lot of contents</td></tr>
...
</tbody>
</table>
When you create a very tall element with
page-break-inside: avoid
which does not fit to page, it leads to infinite looping and weasyprint never produce any result.Test case:
The text was updated successfully, but these errors were encountered: