From 68006f3e16d010d7fbb3b130821b0907bc1856da Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 12 Oct 2022 23:19:14 +0200 Subject: [PATCH] LibWeb: Update Navigator.idl to use 4 spaces for indentation --- Userland/Libraries/LibWeb/HTML/Navigator.idl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Userland/Libraries/LibWeb/HTML/Navigator.idl b/Userland/Libraries/LibWeb/HTML/Navigator.idl index 0c0cd295639..7f0e43fbfbf 100644 --- a/Userland/Libraries/LibWeb/HTML/Navigator.idl +++ b/Userland/Libraries/LibWeb/HTML/Navigator.idl @@ -6,7 +6,7 @@ // https://html.spec.whatwg.org/multipage/system-state.html#navigator [Exposed=Window] interface Navigator { - // objects implementing this interface also implement the interfaces given below + // objects implementing this interface also implement the interfaces given below }; // NOTE: As NavigatorContentUtils, NavigatorCookies, and NavigatorPlugins are not used in WorkerNavigator, @@ -14,21 +14,21 @@ interface Navigator { // https://html.spec.whatwg.org/multipage/system-state.html#navigatorcontentutils interface mixin NavigatorContentUtils { - // FIXME: [SecureContext] undefined registerProtocolHandler(DOMString scheme, USVString url); - // FIXME: [SecureContext] undefined unregisterProtocolHandler(DOMString scheme, USVString url); + // FIXME: [SecureContext] undefined registerProtocolHandler(DOMString scheme, USVString url); + // FIXME: [SecureContext] undefined unregisterProtocolHandler(DOMString scheme, USVString url); }; // https://html.spec.whatwg.org/multipage/system-state.html#navigatorcookies interface mixin NavigatorCookies { - readonly attribute boolean cookieEnabled; + readonly attribute boolean cookieEnabled; }; // https://html.spec.whatwg.org/multipage/system-state.html#navigatorplugins interface mixin NavigatorPlugins { - // FIXME: [SameObject] readonly attribute PluginArray plugins; - // FIXME: [SameObject] readonly attribute MimeTypeArray mimeTypes; - boolean javaEnabled(); - readonly attribute boolean pdfViewerEnabled; + // FIXME: [SameObject] readonly attribute PluginArray plugins; + // FIXME: [SameObject] readonly attribute MimeTypeArray mimeTypes; + boolean javaEnabled(); + readonly attribute boolean pdfViewerEnabled; }; Navigator includes NavigatorID;