mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:08:13 +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
15 changed files with 659 additions and 3 deletions
|
@ -19,7 +19,7 @@ MessageChannel::MessageChannel()
|
|||
m_port2 = MessagePort::create();
|
||||
|
||||
// 3. Entangle this's port 1 and this's port 2.
|
||||
m_port1->entangle_with({}, *m_port2);
|
||||
m_port1->entangle_with(*m_port2);
|
||||
}
|
||||
|
||||
MessageChannel::~MessageChannel()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue