aboutsummaryrefslogtreecommitdiffstats
path: root/components/constellation/constellation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/constellation/constellation.rs')
-rw-r--r--components/constellation/constellation.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs
index f3a15d7708d..e493a97d184 100644
--- a/components/constellation/constellation.rs
+++ b/components/constellation/constellation.rs
@@ -4783,6 +4783,12 @@ where
self.compositor_proxy
.send(CompositorMsg::WebDriverMouseMoveEvent(webview_id, x, y));
},
+ WebDriverCommandMsg::WheelScrollAction(webview, x, y, delta_x, delta_y) => {
+ self.compositor_proxy
+ .send(CompositorMsg::WebDriverWheelScrollEvent(
+ webview, x, y, delta_x, delta_y,
+ ));
+ },
WebDriverCommandMsg::TakeScreenshot(webview_id, rect, response_sender) => {
self.compositor_proxy.send(CompositorMsg::CreatePng(
webview_id,