1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibWeb: Add AriaData object to parse ARIAMixin data

This provides an easily serializeable interface for us to use in IPC.
This commit is contained in:
Jonah 2023-02-25 15:50:34 -06:00 committed by Sam Atkins
parent 10931dceb8
commit 57a6d577ad
8 changed files with 893 additions and 5 deletions

View file

@ -1779,4 +1779,9 @@ void Element::scroll(HTML::ScrollToOptions const&)
dbgln("FIXME: Implement Element::scroll(ScrollToOptions)");
}
bool Element::id_reference_exists(DeprecatedString const& id_reference) const
{
return document().get_element_by_id(id_reference);
}
}