aboutsummaryrefslogtreecommitdiffstats
path: root/components/script_traits/webdriver_msg.rs
diff options
context:
space:
mode:
authorGeorge Roman <george.roman.99@gmail.com>2019-07-31 00:18:27 +0300
committerGeorge Roman <george.roman.99@gmail.com>2019-08-22 10:11:13 +0300
commitf064883e07e7ad27a44d93d03a46a05bb3b6a24a (patch)
tree1d8fe26b2ea0cda09117f4247e4d788d90a06781 /components/script_traits/webdriver_msg.rs
parent2a9b2fe027228b7a89c7c284e35795923d3e26b5 (diff)
downloadservo-f064883e07e7ad27a44d93d03a46a05bb3b6a24a.tar.gz
servo-f064883e07e7ad27a44d93d03a46a05bb3b6a24a.zip
Implement pointerMove webdriver action
Diffstat (limited to 'components/script_traits/webdriver_msg.rs')
-rw-r--r--components/script_traits/webdriver_msg.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script_traits/webdriver_msg.rs b/components/script_traits/webdriver_msg.rs
index 23fa60efddb..8a691d75eb5 100644
--- a/components/script_traits/webdriver_msg.rs
+++ b/components/script_traits/webdriver_msg.rs
@@ -75,6 +75,7 @@ pub enum WebDriverScriptCommand {
GetElementRect(String, IpcSender<Result<Rect<f64>, ErrorStatus>>),
GetElementTagName(String, IpcSender<Result<String, ErrorStatus>>),
GetElementText(String, IpcSender<Result<String, ErrorStatus>>),
+ GetElementInViewCenterPoint(String, IpcSender<Result<Option<(i64, i64)>, ErrorStatus>>),
GetBoundingClientRect(String, IpcSender<Result<Rect<f32>, ErrorStatus>>),
GetBrowsingContextId(
WebDriverFrameId,