mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Implement GetElementProperty WebDriver command
This commit is contained in:
parent
ef7b58f0cd
commit
e34a15c5ef
7 changed files with 107 additions and 18 deletions
|
@ -2013,6 +2013,15 @@ impl ScriptThread {
|
|||
reply,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::GetElementProperty(node_id, name, reply) => {
|
||||
webdriver_handlers::handle_get_property(
|
||||
&*documents,
|
||||
pipeline_id,
|
||||
node_id,
|
||||
name,
|
||||
reply,
|
||||
)
|
||||
},
|
||||
WebDriverScriptCommand::GetElementCSS(node_id, name, reply) => {
|
||||
webdriver_handlers::handle_get_css(&*documents, pipeline_id, node_id, name, reply)
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue