LibWeb: Give Document a "target element"

The target element is the one matching the URL fragment. We don't yet
set it to anything.
This commit is contained in:
Sam Atkins 2023-08-11 20:14:44 +01:00 committed by Andreas Kling
commit 13b4bf48a8
Notes: sideshowbarker 2024-07-17 07:16:27 +09:00
4 changed files with 28 additions and 1 deletions

View file

@ -634,6 +634,11 @@ bool Element::is_active() const
return document().active_element() == this;
}
bool Element::is_target() const
{
return document().target_element() == this;
}
JS::NonnullGCPtr<HTMLCollection> Element::get_elements_by_class_name(DeprecatedFlyString const& class_names)
{
Vector<FlyString> list_of_class_names;