mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Add partially functioning Worker API
Add a partial implementation of HTML5 Worker API. Messages can be sent from the inner context externally.
This commit is contained in:
parent
b6c3fad078
commit
ae346cff6b
Notes:
sideshowbarker
2024-07-17 18:37:24 +09:00
Author: https://github.com/ben-abraham
Commit: ae346cff6b
Pull-request: https://github.com/SerenityOS/serenity/pull/12391
Reviewed-by: https://github.com/Lubrsi
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/davidot
Reviewed-by: https://github.com/linusg
15 changed files with 659 additions and 3 deletions
|
@ -30,7 +30,7 @@ void MessagePort::disentangle()
|
|||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/web-messaging.html#entangle
|
||||
void MessagePort::entangle_with(Badge<MessageChannel>, MessagePort& remote_port)
|
||||
void MessagePort::entangle_with(MessagePort& remote_port)
|
||||
{
|
||||
if (m_remote_port == &remote_port)
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue