XFA -- Display text content

- display xhtml;
  - allow spaces in xhtml (xfa-spacerun:yes);
  - support column layout;
  - fix some border issues.
This commit is contained in:
Calixte Denizet 2021-03-25 16:54:36 +01:00
parent a3669a4f0d
commit a4c986515f
9 changed files with 552 additions and 164 deletions

View file

@ -330,9 +330,9 @@ describe("XFAParser", function () {
);
expect(p[$text]()).toEqual(
[
"The first line of this paragraph is indented a half-inch.\n",
"Successive lines are not indented.\n",
"This is the last line of the paragraph.\n",
" The first line of this paragraph is indented a half-inch.\n",
" Successive lines are not indented.\n",
" This is the last line of the paragraph.\n ",
].join("")
);
});