mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
Add webdriver deletecookies function
This commit is contained in:
parent
04c93c511b
commit
64961cc9c1
8 changed files with 60 additions and 1 deletions
|
@ -1844,6 +1844,9 @@ impl ScriptThread {
|
|||
WebDriverScriptCommand::AddCookie(params, reply) => {
|
||||
webdriver_handlers::handle_add_cookie(&*documents, pipeline_id, params, reply)
|
||||
},
|
||||
WebDriverScriptCommand::DeleteCookies(reply) => {
|
||||
webdriver_handlers::handle_delete_cookies(&*documents, pipeline_id, reply)
|
||||
},
|
||||
WebDriverScriptCommand::ExecuteScript(script, reply) => {
|
||||
webdriver_handlers::handle_execute_script(&*documents, pipeline_id, script, reply)
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue