-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Move webdriver actions commands to servoshell #37669
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
Conversation
59970d4
to
254fea5
Compare
🛠 These changes could not be applied onto the latest upstream WPT. Servo's copy of the Web Platform Tests may be out of sync. |
254fea5
to
41bcf67
Compare
41bcf67
to
a498bb1
Compare
a498bb1
to
09fbd23
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.
Looks pretty good. Just some minor comments...
09fbd23
to
3d39028
Compare
3d39028
to
5712277
Compare
Signed-off-by: batu_hoang <longvatrong111@gmail.com>
5712277
to
15b31b4
Compare
@mrobinson I made some updates, can you kindly review this again? |
// Key events don't need hit test so can be forwarded to constellation for now | ||
WebDriverCommandMsg::SendKeys(..) => { | ||
running_state.forward_webdriver_command(msg); | ||
}, | ||
WebDriverCommandMsg::KeyboardAction(..) => { | ||
running_state.forward_webdriver_command(msg); | ||
}, |
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.
Eventually these should use notify_input_event
. That would be good to do in a followup.
Move webdriver actions commands to servoshell.
Testing: Test with webdriver enable in the CI
Test result 1
Test result 2
Test result 3
Fixes: #37370