Hi,
I can't find any information on what this error represents, can I get clarification on when it is triggered? It doesn't happen if I omit the --tagged-pdf option.
For now I'd like to just know when the error is triggered (I won't be able to provide the HTML as-is, but possibly a version with the sensitive info removed at the least).
Thank you,
Andrew.
Edit: I have figured it out, this was causing it (similar concept, basically a position:absolute element inside of a div with display:flex so the div would be seen as empty)
<html>
<head>
<title>Test</title>
</head>
<body>
<div style="display:flex">
<div style="position:absolute">
<p>Hello, World!</p>
</div>
</div>
</body>
</html>
I can't find any information on what this error represents, can I get clarification on when it is triggered? It doesn't happen if I omit the --tagged-pdf option.
For now I'd like to just know when the error is triggered (I won't be able to provide the HTML as-is, but possibly a version with the sensitive info removed at the least).
Thank you,
Andrew.
Edit: I have figured it out, this was causing it (similar concept, basically a position:absolute element inside of a div with display:flex so the div would be seen as empty)
<html>
<head>
<title>Test</title>
</head>
<body>
<div style="display:flex">
<div style="position:absolute">
<p>Hello, World!</p>
</div>
</div>
</body>
</html>