mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
LibWeb: Stub out Release Actions
This allows WPT to open the browser, and it no longer instantly crashes
This commit is contained in:
parent
3d7e788981
commit
23b378822b
Notes:
sideshowbarker
2024-07-17 17:49:11 +09:00
Author: https://github.com/stelar7
Commit: 23b378822b
Pull-request: https://github.com/SerenityOS/serenity/pull/20694
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/trflynn89 ✅
7 changed files with 36 additions and 0 deletions
|
@ -96,6 +96,7 @@ static constexpr auto s_webdriver_endpoints = Array {
|
|||
ROUTE(POST, "/session/:session_id/cookie"sv, add_cookie),
|
||||
ROUTE(DELETE, "/session/:session_id/cookie/:name"sv, delete_cookie),
|
||||
ROUTE(DELETE, "/session/:session_id/cookie"sv, delete_all_cookies),
|
||||
ROUTE(DELETE, "/session/:session_id/actions"sv, release_actions),
|
||||
ROUTE(POST, "/session/:session_id/alert/dismiss"sv, dismiss_alert),
|
||||
ROUTE(POST, "/session/:session_id/alert/accept"sv, accept_alert),
|
||||
ROUTE(GET, "/session/:session_id/alert/text"sv, get_alert_text),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue