mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +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
16
Userland/Libraries/LibWeb/HTML/Worker.idl
Normal file
16
Userland/Libraries/LibWeb/HTML/Worker.idl
Normal file
|
@ -0,0 +1,16 @@
|
|||
[Exposed=(Window)]
|
||||
interface Worker : EventTarget {
|
||||
constructor(DOMString scriptURL, optional WorkerOptions options = {});
|
||||
|
||||
undefined terminate();
|
||||
undefined postMessage(any message, optional any transfer);
|
||||
|
||||
attribute EventHandler onmessage;
|
||||
attribute EventHandler onmessageerror;
|
||||
};
|
||||
|
||||
dictionary WorkerOptions {
|
||||
USVString type = "classic";
|
||||
USVString credentials = "same-origin";
|
||||
DOMString name = "";
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue