-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
[api-minor][Annotations] charLimit === 0 means unlimited (bug 1782564) #15329
Conversation
beb9854
to
c2e45bd
Compare
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/e45498c84296a55/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/ffa1ed660579ba0/output.txt |
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 one final optional comment and all tests passing; thank you!
src/display/annotation_layer.js
Outdated
return; | ||
} | ||
value = value.slice(0, charLimit); | ||
event.target.value = elementData.userValue = value; |
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.
Nit: Would it work with just the following?
event.target.value = elementData.userValue = value; | |
target.value = elementData.userValue = value; |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/e45498c84296a55/output.txt Total script time: 26.40 mins
Image differences available at: http://54.241.84.105:8877/e45498c84296a55/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/ffa1ed660579ba0/output.txt Total script time: 29.37 mins
Image differences available at: http://54.193.163.58:8877/ffa1ed660579ba0/reftest-analyzer.html#web=eq.log |
Changing the charLimit in JS had no impact, so this patch aims to fix that and add an integration test for it.
/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/150bf453e529625/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/26cfa38aa4d799a/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/150bf453e529625/output.txt Total script time: 26.38 mins
Image differences available at: http://54.241.84.105:8877/150bf453e529625/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/26cfa38aa4d799a/output.txt Total script time: 28.86 mins
|
Changing the charLimit in JS had no impact, so this patch aims to fix
that and add an integration test for it.