From 48011ad006499cb416eb7e9e7ac68e9f46bf1999 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 7 Feb 2024 14:09:56 +0100 Subject: [PATCH] Indentation --- source | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/source b/source index 14e2f8c4300..480c5720dbf 100644 --- a/source +++ b/source @@ -112758,26 +112758,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