-
Notifications
You must be signed in to change notification settings - Fork 10k
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
Annotation - Checkboxes with the same name and export values must be in unison #14027
Conversation
The test I'll write for #14023 will test the current patch. |
/botio integrationtest |
From: Bot.io (Windows)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.193.163.58:8877/5e606d7e0eae0c3/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_integrationtest from @calixteman received. Current queue size: 0 Live output at: http://54.241.84.105:8877/d131b17d4daadaf/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/d131b17d4daadaf/output.txt Total script time: 3.79 mins
|
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/5e606d7e0eae0c3/output.txt Total script time: 5.72 mins
|
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 the comment addressed; thank you!
src/display/annotation_layer.js
Outdated
if (value) { | ||
element.setAttribute("checked", true); | ||
} | ||
element.setAttribute("id", id); | ||
element.setAttribute("acroformExportValue", data.exportValue); |
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.
The attribute name feels a bit verbose to me; any reason that just exportValue
wouldn't work?
…in unison - it aims to fix mozilla#14024. - this patch adds an attribute `acroformExportValue` to the HTML input in order to set the checked attribute in taking into account the exportValue for the checkboxes with the same name.
acroformExportValue
to the HTML input in order to set the checked attribute in taking into account the exportValue for the checkboxes with the same name.