LibWeb: Make aria-relevant and ariaRelevant reflect

This change makes the aria-relevant content attribute the ariaRelevant
IDL/DOM attribute get reflected — which makes the Ladybird behavior
interoperable with the implemented behavior in other existing engines.

Otherwise, without this change, Ladybird fails the relevant test case in
https://wpt.fyi/results/html/dom/aria-attribute-reflection.html — which
other existing engines all pass.
This commit is contained in:
sideshowbarker 2024-09-01 12:10:33 +09:00 committed by Sam Atkins
commit e86711a5b7
Notes: github-actions[bot] 2024-09-06 12:35:43 +00:00

View file

@ -36,6 +36,7 @@ interface mixin ARIAMixin {
attribute DOMString? ariaPosInSet;
attribute DOMString? ariaPressed;
attribute DOMString? ariaReadOnly;
attribute DOMString? ariaRelevant;
attribute DOMString? ariaRequired;
attribute DOMString? ariaRoleDescription;