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:
parent
ae531e5e23
commit
1486608f32
2 changed files with 11 additions and 4 deletions
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue