mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-07-02 22:21:33 +00:00
web-sys: Use mixins instead of [NoInterfaceObject]
interfaces and implements
I think these might all be from before WebIDL mixins existed. Either way, multiple inheritance of interfaces that don't have exposed interface objects is equivalent to mixins.
This commit is contained in:
@ -29,8 +29,8 @@ interface WorkerGlobalScope : EventTarget {
|
||||
// also has additional members in a partial interface
|
||||
};
|
||||
|
||||
WorkerGlobalScope implements GlobalCrypto;
|
||||
WorkerGlobalScope implements WindowOrWorkerGlobalScope;
|
||||
WorkerGlobalScope includes GlobalCrypto;
|
||||
WorkerGlobalScope includes WindowOrWorkerGlobalScope;
|
||||
|
||||
// Not implemented yet: bug 1072107.
|
||||
// WorkerGlobalScope implements FontFaceSource;
|
||||
// WorkerGlobalScope includes FontFaceSource;
|
||||
|
Reference in New Issue
Block a user