mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:57:45 +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
|
@ -215,11 +215,14 @@ class MessageEvent;
|
|||
class MessagePort;
|
||||
class PageTransitionEvent;
|
||||
class PromiseRejectionEvent;
|
||||
class WorkerDebugConsoleClient;
|
||||
class Storage;
|
||||
class SubmitEvent;
|
||||
class TextMetrics;
|
||||
class WebSocket;
|
||||
class WindowEnvironmentSettingsObject;
|
||||
class Worker;
|
||||
class WorkerEnvironmentSettingsObject;
|
||||
class WorkerGlobalScope;
|
||||
class WorkerLocation;
|
||||
class WorkerNavigator;
|
||||
|
@ -488,6 +491,7 @@ class URLSearchParamsWrapper;
|
|||
class URLWrapper;
|
||||
class WebSocketWrapper;
|
||||
class WindowObject;
|
||||
class WorkerWrapper;
|
||||
class WorkerGlobalScopeWrapper;
|
||||
class WorkerLocationWrapper;
|
||||
class WorkerNavigatorWrapper;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue