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;