-
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
[Annotations] Add support for printing/saving choice list with multiple selections #14720
Conversation
calixteman
commented
Mar 26, 2022
- it aims to fix issue Implement printing/saving support for listboxes #12189.
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/ccca9d05f1505ce/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/0516785a8ad10dd/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/0516785a8ad10dd/output.txt Total script time: 23.50 mins
Image differences available at: http://54.241.84.105:8877/0516785a8ad10dd/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/ccca9d05f1505ce/output.txt Total script time: 26.67 mins
Image differences available at: http://54.193.163.58:8877/ccca9d05f1505ce/reftest-analyzer.html#web=eq.log |
Looking at the pdf.js/test/test_manifest.json Lines 5902 to 5904 in db4f3ad
|
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/30e6befd11c4fc0/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/aa316faeb3c51f4/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/30e6befd11c4fc0/output.txt Total script time: 23.62 mins
Image differences available at: http://54.241.84.105:8877/30e6befd11c4fc0/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/aa316faeb3c51f4/output.txt Total script time: 26.25 mins
Image differences available at: http://54.193.163.58:8877/aa316faeb3c51f4/reftest-analyzer.html#web=eq.log |
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.
r=me, with a couple of small comments.
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/a36c82bed903a81/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/fe4ba8868392e27/output.txt |
…le selections - it aims to fix issue mozilla#12189.
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/a36c82bed903a81/output.txt Total script time: 23.69 mins
Image differences available at: http://54.241.84.105:8877/a36c82bed903a81/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/fe4ba8868392e27/output.txt Total script time: 26.20 mins
Image differences available at: http://54.193.163.58:8877/fe4ba8868392e27/reftest-analyzer.html#web=eq.log |
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/cc10b3b6da2a00a/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/31163f8e7d60bbc/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/cc10b3b6da2a00a/output.txt Total script time: 3.05 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/31163f8e7d60bbc/output.txt Total script time: 6.34 mins
|
/botio makeref |
From: Bot.io (Linux m4)ReceivedCommand cmd_makeref from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/450dcd9f8f6ad65/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_makeref from @calixteman received. Current queue size: 1 Live output at: http://54.193.163.58:8877/ceac16200f9f9a2/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/450dcd9f8f6ad65/output.txt Total script time: 20.67 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/ceac16200f9f9a2/output.txt Total script time: 21.35 mins
|
let lineWidth = -1; | ||
let value; | ||
for (const { displayValue } of this.data.options) { | ||
const width = this._getTextWidth(displayValue); |
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.
Should this be
const width = this._getTextWidth(displayValue, font);