mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 02:13:56 +09:00
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.
This commit is contained in:
parent
8414734a2d
commit
8556d47240
Notes:
sideshowbarker
2024-07-17 14:33:07 +09:00
Author: https://github.com/linusg
Commit: 8556d47240
Pull-request: https://github.com/SerenityOS/serenity/pull/17227
61 changed files with 179 additions and 180 deletions
|
@ -60,7 +60,7 @@ public:
|
|||
|
||||
DeprecatedString const& type() const;
|
||||
|
||||
virtual Optional<DOM::ARIARoles::Role> default_role() const override;
|
||||
virtual Optional<ARIA::Role> default_role() const override;
|
||||
|
||||
private:
|
||||
HTMLSelectElement(DOM::Document&, DOM::QualifiedName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue