-
Notifications
You must be signed in to change notification settings - Fork 32
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
Initial Input module implementation #784
Conversation
c693126
to
22149dd
Compare
f193b3b
to
3871396
Compare
22149dd
to
67b487b
Compare
480ffc5
to
0f41670
Compare
6b94d5e
to
e1c1b2b
Compare
Do we need to update some WPT expectations to see if the WPT tests pass? @sadym-chromium |
eb0d1d3
to
bb35958
Compare
@OrKoN Yea, we should update the WPT tests. I've added appended the headless tests, but should we do the others as well? |
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.
Code LGTM but I will leave the review of WPT test expectations/e2e to Maksim since I am not very familiar with the setup.
bb35958
to
ae5b179
Compare
ae5b179
to
5371dcb
Compare
5371dcb
to
592ae58
Compare
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.
LGTM after some comments will be added
|
||
# TODO(jrandolf): Investigate mouse wheel flakiness. The deltaY sometimes | ||
# doubles and other times not. It is also not independent of the mouse. | ||
# @pytest.mark.asyncio |
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.
Please use @pytest.mark.skip(reason="TODO: Implement") instead of submitting commented out code
from anys import ANY_STR | ||
from test_helpers import execute_command, goto_url | ||
|
||
SCRIPT_HTML = 'data:text/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.
Define the script without data:text/html
. Then, in the test function, add the html
fixture and use it as html(SCRIPT)
Notes to the reviewer:
Bug: #749