diff options
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 9264b7b9312..b81ff6d5fc7 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1902,6 +1902,9 @@ impl ScriptThread { WebDriverScriptCommand::GetActiveElement(reply) => { webdriver_handlers::handle_get_active_element(&*documents, pipeline_id, reply) }, + WebDriverScriptCommand::GetPageSource(reply) => { + webdriver_handlers::handle_get_page_source(&*documents, pipeline_id, reply) + }, WebDriverScriptCommand::GetCookies(reply) => { webdriver_handlers::handle_get_cookies(&*documents, pipeline_id, reply) }, |