From e34a15c5ef268149daef79376a981108545fa34d Mon Sep 17 00:00:00 2001 From: George Roman Date: Tue, 18 Jun 2019 22:02:27 +0300 Subject: Implement GetElementProperty WebDriver command --- components/script/script_thread.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'components/script/script_thread.rs') diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index e6d91a1bc2e..482fb0fc7de 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -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) }, -- cgit v1.2.3