mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Implement pointerMove webdriver action
This commit is contained in:
parent
2a9b2fe027
commit
f064883e07
9 changed files with 306 additions and 28 deletions
|
@ -3528,6 +3528,10 @@ where
|
|||
y,
|
||||
));
|
||||
},
|
||||
WebDriverCommandMsg::MouseMoveAction(x, y) => {
|
||||
self.compositor_proxy
|
||||
.send(ToCompositorMsg::WebDriverMouseMoveEvent(x, y));
|
||||
},
|
||||
WebDriverCommandMsg::TakeScreenshot(_, rect, reply) => {
|
||||
self.compositor_proxy
|
||||
.send(ToCompositorMsg::CreatePng(rect, reply));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue