summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-01-28 22:23:16 +0000
committerLinus Groh <mail@linusgroh.de>2023-01-29 00:02:55 +0000
commit8556d472400605d23d326816f497f4164b620b1d (patch)
tree424375c6ac5d6c6408540535f890132a0792aea3 /Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h
parent8414734a2dcc57813bf27d596fc7abc32d7ab308 (diff)
downloadserenity-8556d472400605d23d326816f497f4164b620b1d.zip
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.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLQuoteElement.h2
1 files changed, 1 insertions, 1 deletions
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<DOM::ARIARoles::Role> default_role() const override;
+ virtual Optional<ARIA::Role> default_role() const override;
private:
HTMLQuoteElement(DOM::Document&, DOM::QualifiedName);