1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

XFA - Default background in rectangle is white

- Fix a typo in order to open the pdf in issue #13679
  - After fixing the fill default color there wer some regressions because of z-index
    and when fixing z-index there were some regressions because of borders
  - So fix the borders rendering.
This commit is contained in:
Calixte Denizet 2021-07-06 17:52:05 +02:00
parent 90d196a080
commit c47f0f0f40
6 changed files with 37 additions and 37 deletions

View file

@ -2689,7 +2689,7 @@ class Fill extends XFAObject {
}
if (parent instanceof Rectangle || parent instanceof Arc) {
propName = "fill";
style.fill = "transparent";
style.fill = "white";
}
for (const name of Object.getOwnPropertyNames(this)) {