mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:47:35 +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:
parent
10931dceb8
commit
57a6d577ad
8 changed files with 893 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -318,6 +318,8 @@ protected:
|
|||
|
||||
virtual void visit_edges(Cell::Visitor&) override;
|
||||
|
||||
virtual bool id_reference_exists(DeprecatedString const&) const override;
|
||||
|
||||
private:
|
||||
void make_html_uppercased_qualified_name();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue