diff --git a/source b/source index 19819fac2e2..8d864cdef0f 100644 --- a/source +++ b/source @@ -112779,26 +112779,26 @@ interface mixin WindowEventHandlers {

The WindowOrWorkerOrShadowRealmGlobalScope mixin

The 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;

Base64 utility methods