-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XFA -- Display text content #13141
XFA -- Display text content #13141
Conversation
calixteman
commented
Mar 25, 2021
- display xhtml;
- allow spaces in xhtml (xfa-spacerun:yes);
- support column layout;
- fix some border issues.
It looks like the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor nits.
- display xhtml; - allow spaces in xhtml (xfa-spacerun:yes); - support column layout; - fix some border issues.
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.67.70.0:8877/8f3d005038959b1/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://3.101.106.178:8877/7e3de62f318f0ef/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.67.70.0:8877/8f3d005038959b1/output.txt Total script time: 25.02 mins
Image differences available at: http://54.67.70.0:8877/8f3d005038959b1/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://3.101.106.178:8877/7e3de62f318f0ef/output.txt Total script time: 28.72 mins
Image differences available at: http://3.101.106.178:8877/7e3de62f318f0ef/reftest-analyzer.html#web=eq.log |
@@ -65,99 +141,163 @@ function checkStyle(style) { | |||
.join(";"); | |||
} | |||
|
|||
class A extends XmlObject { | |||
const NoWhites = new Set(["body", "html"]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be NoWhites
-> NoWhitespace
instead, right?
(I'd suggest just folding this change into a pending XFA-patch, to reduce unnecessary code churn.)