Files
ladybird/Libraries/LibWeb/Worker/WebWorkerClient.ipc
Shannon Booth 1ca68af702 LibWeb: Fire error event at Worker when script loading fails
This fixes a whole bunch of WPT timeouts for Workers which wait
for this event to arrive.
2026-03-08 12:18:21 +00:00

11 lines
387 B
Plaintext

#include <LibHTTP/Cookie/Cookie.h>
#include <LibURL/URL.h>
#include <LibWeb/Bindings/AgentType.h>
endpoint WebWorkerClient {
did_close_worker() =|
did_fail_loading_worker_script() =|
did_request_cookie(URL::URL url, HTTP::Cookie::Source source) => (HTTP::Cookie::VersionedCookie cookie)
request_worker_agent(Web::Bindings::AgentType worker_type) => (IPC::File socket)
}