mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +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:
committed by
Andreas Kling
parent
b6c3fad078
commit
ae346cff6b
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user