mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 18:50:50 +00:00
LibWeb: Implement Worker.postMessage(message, transfer)
This commit is contained in:
parent
755b63132b
commit
bf81e2fd64
Notes:
github-actions[bot]
2024-10-28 22:33:09 +00:00
Author: https://github.com/shannonbooth
Commit: bf81e2fd64
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2022
3 changed files with 12 additions and 2 deletions
|
@ -10,8 +10,7 @@ interface Worker : EventTarget {
|
|||
constructor(DOMString scriptURL, optional WorkerOptions options = {});
|
||||
|
||||
undefined terminate();
|
||||
// FIXME: IDL overload issue here
|
||||
// FIXME: undefined postMessage(any message, sequence<object> transfer);
|
||||
undefined postMessage(any message, sequence<object> transfer);
|
||||
undefined postMessage(any message, optional StructuredSerializeOptions options = {});
|
||||
|
||||
attribute EventHandler onmessage;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue