diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp index 0845d53a76a..20addd7982a 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp @@ -3194,7 +3194,7 @@ void @class_name@::initialize(JS::Realm& realm) if (!interface.attributes.is_empty() || !interface.functions.is_empty() || interface.has_stringifier) { generator.append(R"~~~( -static JS::ThrowCompletionOr<@fully_qualified_name@*> impl_from(JS::VM& vm) +[[maybe_unused]] static JS::ThrowCompletionOr<@fully_qualified_name@*> impl_from(JS::VM& vm) { auto this_value = vm.this_value(); JS::Object* this_object = nullptr; diff --git a/Userland/Libraries/LibWeb/HTML/CanvasPattern.idl b/Userland/Libraries/LibWeb/HTML/CanvasPattern.idl index 6b265987851..70fa79f2ebd 100644 --- a/Userland/Libraries/LibWeb/HTML/CanvasPattern.idl +++ b/Userland/Libraries/LibWeb/HTML/CanvasPattern.idl @@ -2,5 +2,5 @@ [Exposed=(Window,Worker)] interface CanvasPattern { // opaque object - // FIXME: undefined setTransform(optional DOMMatrix2DInit transform = {}); + [FIXME] undefined setTransform(optional DOMMatrix2DInit transform = {}); }; diff --git a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl index 8c02b61a7e9..7cab08527aa 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLElement.idl @@ -28,7 +28,7 @@ interface HTMLElement : Element { [LegacyNullToEmptyString, CEReactions] attribute DOMString innerText; [LegacyNullToEmptyString, CEReactions] attribute DOMString outerText; - // FIXME: ElementInternals attachInternals(); + [FIXME] ElementInternals attachInternals(); // The popover API [FIXME] undefined showPopover(); diff --git a/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl index 74c5e67d9d6..7ea2b195a91 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl @@ -46,7 +46,7 @@ interface HTMLMediaElement : HTMLElement { attribute double currentTime; undefined fastSeek(double time); readonly attribute unrestricted double duration; - // FIXME: object getStartDate(); + [FIXME] object getStartDate(); readonly attribute boolean paused; [FIXME] attribute double defaultPlaybackRate; [FIXME] attribute double playbackRate; diff --git a/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl index af1f183b006..f67ce25acc5 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl @@ -34,7 +34,7 @@ interface HTMLTextAreaElement : HTMLElement { readonly attribute NodeList labels; - // FIXME: undefined select(); + [FIXME] undefined select(); attribute unsigned long selectionStart; attribute unsigned long selectionEnd; [FIXME] attribute DOMString selectionDirection;