1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

XFA - contentarea must be on top of the other containers in a pageArea

This commit is contained in:
Calixte Denizet 2021-06-06 16:37:21 +02:00
parent ae531e5e23
commit 1486608f32
2 changed files with 11 additions and 4 deletions

View file

@ -3183,7 +3183,14 @@ class PageArea extends XFAObject {
}
this[$childrenToHTML]({
filter: new Set(["area", "draw", "field", "subform", "contentArea"]),
filter: new Set(["area", "draw", "field", "subform"]),
include: true,
});
// contentarea must be the last container to be sure it is
// on top of the others.
this[$childrenToHTML]({
filter: new Set(["contentArea"]),
include: true,
});