mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Implement pointerMove webdriver action
This commit is contained in:
parent
2a9b2fe027
commit
f064883e07
9 changed files with 306 additions and 28 deletions
|
@ -2209,6 +2209,14 @@ impl ScriptThread {
|
|||
WebDriverScriptCommand::GetElementText(node_id, reply) => {
|
||||
webdriver_handlers::handle_get_text(&*documents, pipeline_id, node_id, reply)
|
||||
},
|
||||
WebDriverScriptCommand::GetElementInViewCenterPoint(node_id, reply) => {
|
||||
webdriver_handlers::handle_get_element_in_view_center_point(
|
||||
&*documents,
|
||||
pipeline_id,
|
||||
node_id,
|
||||
reply,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::GetBrowsingContextId(webdriver_frame_id, reply) => {
|
||||
webdriver_handlers::handle_get_browsing_context_id(
|
||||
&*documents,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue