From 8556d472400605d23d326816f497f4164b620b1d Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 28 Jan 2023 22:23:16 +0000 Subject: LibWeb: Move ARIA-related code into the Web::ARIA namespace ARIA has its own spec and is not part of the DOM spec, which is what the Web::DOM namespace is for (https://www.w3.org/TR/wai-aria-1.2/). This allows us to stay closer to the spec with function names and don't have to add the word "ARIA" to identifiers constantly - the namespace now provides that clarity. --- Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h') diff --git a/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h b/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h index ccc80188f9..57e9c99375 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h @@ -16,7 +16,7 @@ class HTMLQuoteElement final : public HTMLElement { public: virtual ~HTMLQuoteElement() override; - virtual Optional default_role() const override; + virtual Optional default_role() const override; private: HTMLQuoteElement(DOM::Document&, DOM::QualifiedName); -- cgit v1.2.3