mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
continue messageport, transferable, postmessage options
This commit is contained in:
parent
c3b17c1201
commit
2f8932a6a1
100 changed files with 2456 additions and 1171 deletions
|
@ -65,6 +65,8 @@
|
|||
|
||||
[Throws]
|
||||
void postMessage(any message, USVString targetOrigin, optional sequence<object> transfer /*= []*/);
|
||||
[Throws]
|
||||
void postMessage(any message, optional WindowPostMessageOptions options = {});
|
||||
|
||||
// also has obsolete members
|
||||
};
|
||||
|
@ -172,3 +174,8 @@ partial interface Window {
|
|||
[Pref="css.animations.testing.enabled"]
|
||||
readonly attribute unsigned long runningAnimationCount;
|
||||
};
|
||||
|
||||
dictionary WindowPostMessageOptions {
|
||||
USVString targetOrigin = "/";
|
||||
sequence<object> transfer;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue