1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-29 07:37:57 +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

@ -171,7 +171,7 @@ class BehaviorOverride extends ContentObject {
this[$content]
.trim()
.split(/\s+/)
.filter(x => !!x && x.include(":"))
.filter(x => x.includes(":"))
.map(x => x.split(":", 2))
);
}