XFA - Avoid an exception when looking for a font in a parent node
- it aims to fix issue https://github.com/mozilla/pdf.js/issues/14150; - a parent can be null in case the root has been reached, so just add a check.
This commit is contained in:
parent
3a31b7ef0c
commit
5b7e1f5232
@ -238,7 +238,7 @@ function layoutNode(node, availableSpace) {
|
||||
if (!font) {
|
||||
const root = node[$getTemplateRoot]();
|
||||
let parent = node[$getParent]();
|
||||
while (parent !== root) {
|
||||
while (parent && parent !== root) {
|
||||
if (parent.font) {
|
||||
font = parent.font;
|
||||
break;
|
||||
|
1
test/pdfs/xfa_issue14150.pdf.link
Normal file
1
test/pdfs/xfa_issue14150.pdf.link
Normal file
@ -0,0 +1 @@
|
||||
https://github.com/mozilla/pdf.js/files/7528643/dol4n.pdf
|
@ -1013,6 +1013,15 @@
|
||||
"link": true,
|
||||
"type": "load"
|
||||
},
|
||||
{ "id": "xfa_issue14150",
|
||||
"file": "pdfs/xfa_issue14150.pdf",
|
||||
"md5": "295b3e513b62945fbba73bce6908344c",
|
||||
"link": true,
|
||||
"rounds": 1,
|
||||
"enableXfa": true,
|
||||
"lastPage": 1,
|
||||
"type": "eq"
|
||||
},
|
||||
{ "id": "xfa_issue14071",
|
||||
"file": "pdfs/xfa_issue14071.pdf",
|
||||
"md5": "7ef09705091602668ce22086c83a90f3",
|
||||
|
Loading…
Reference in New Issue
Block a user