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
I encountered an OverflowError when trying to generate a PDF document from an HTML file using WeasyPrint version 62.3. The error occurs on the following line of code: weasyprint/draw.py#L1430.
Reproduction Steps
To reproduce the issue, you can use the minimal HTML and Python code snippets below.
Minimal HTML file:
<!DOCTYPE html><html><head><styletype="text/css">table {
text-align: justify;
}
</style></head><body><table><tr><td>
X Y ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
</td></tr></table></body></html>
I encountered an OverflowError when trying to generate a PDF document from an HTML file using WeasyPrint version 62.3. The error occurs on the following line of code: weasyprint/draw.py#L1430.
Reproduction Steps
To reproduce the issue, you can use the minimal HTML and Python code snippets below.
Minimal HTML file:
Minimal Python code:
Expected Behavior
A PDF document should be generated without any errors.
Actual Behavior
An OverflowError is raised when attempting to generate the PDF.
Environment
The text was updated successfully, but these errors were encountered: