-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Remove excess check in iOS input transparency checks #21883
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mattleibow
approved these changes
Apr 26, 2024
mattleibow
requested changes
Apr 26, 2024
|
||
App.WaitForElement("WaitForStubControl"); | ||
App.ScrollDown("WaitForStubControl", ScrollStrategy.Gesture, 0.75); | ||
App.Screenshot("Scrolling has been done correctly."); |
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 a VerifyScreenshot maybe?
/rebase |
mattleibow
changed the title
Remove excess check
Remove excess check in iOS input transparency checks
Apr 28, 2024
PureWeen
force-pushed
the
remove_transparent_check
branch
from
April 29, 2024 19:46
09bce6c
to
567a3a7
Compare
/rebase |
github-actions
bot
force-pushed
the
remove_transparent_check
branch
from
May 7, 2024 08:54
567a3a7
to
30a7bb4
Compare
/rebase |
github-actions
bot
force-pushed
the
remove_transparent_check
branch
from
May 7, 2024 14:02
30a7bb4
to
63c9b62
Compare
mattleibow
approved these changes
May 8, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change
Fix issue that does not allow scrolling in WebView with PDF on iOS.
Initially, I started by checking the status of the WebView: if internal UIScrollView scrolling was enabled, if the assigned size was correct, etc. Everything is fine so let's go check the hierarchy. It was interesting that the problem does not appear without a Layout as a parent. Reviewing I realized that the problem comes from the changes applied in #17286 related to InputTransparent. Applied changes to keep the InputTransparent working and fix the issue.
Issues Fixed
Fixes #18716