diff --git a/source b/source index 14e2f8c4300..480c5720dbf 100644 --- a/source +++ b/source @@ -112758,26 +112758,26 @@ interface mixin WindowEventHandlers {
WindowOrWorkerOrShadowRealmGlobalScope
mixinThe WindowOrWorkerOrShadowRealmGlobalScope
mixin is for use of APIs that are to be exposed on
- Window
and WorkerGlobalScope
objects.
Window
and WorkerGlobalScope
objects.
- Other standards are encouraged to further extend it using partial
- interface mixin WindowOrWorkerOrShadowRealmGlobalScope { … };
along with an
- appropriate reference.
Other standards are encouraged to further extend it using partial
+ interface mixin WindowOrWorkerOrShadowRealmGlobalScope { … };
along with an
+ appropriate reference.
interface mixin WindowOrWorkerOrShadowRealmGlobalScope {
- // base64 utility methods
- DOMString btoa(DOMString data);
- ByteString atob(DOMString data);
+ interface mixin WindowOrWorkerOrShadowRealmGlobalScope {
+ // base64 utility methods
+ DOMString btoa(DOMString data);
+ ByteString atob(DOMString data);
- // microtask queuing
- undefined queueMicrotask(VoidFunction callback);
+ // microtask queuing
+ undefined queueMicrotask(VoidFunction callback);
- // structured cloning
- any structuredClone(any value, optional StructuredSerializeOptions options = {});
- };
- Window includes WindowOrWorkerGlobalScope;
- WorkerGlobalScope includes WindowOrWorkerGlobalScope;
- ShadowRealmGlobalScope includes WindowOrWorkerGlobalScope;
+ // structured cloning
+ any structuredClone(any value, optional StructuredSerializeOptions options = {});
+};
+Window includes WindowOrWorkerGlobalScope;
+WorkerGlobalScope includes WindowOrWorkerGlobalScope;
+ShadowRealmGlobalScope includes WindowOrWorkerGlobalScope;