diff options
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 28a9a52566f..e9afeed8cd5 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1872,6 +1872,15 @@ impl ScriptThread { reply, ) }, + WebDriverScriptCommand::FindElementElementsCSS(selector,element_id,reply) => { + webdriver_handlers::handle_find_element_elements_css( + &*documents, + pipeline_id, + element_id, + selector, + reply, + ) + }, WebDriverScriptCommand::FocusElement(element_id, reply) => { webdriver_handlers::handle_focus_element( &*documents, |