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

LibWeb: Implement getting "inclusive ancestor navigables" of a document

This commit is contained in:
Aliaksandr Kalenik 2023-08-20 00:41:55 +02:00 committed by Andreas Kling
parent e211f6c925
commit 01cc14714e
2 changed files with 14 additions and 0 deletions

View file

@ -463,6 +463,7 @@ public:
Vector<JS::Handle<HTML::Navigable>> descendant_navigables();
Vector<JS::Handle<HTML::Navigable>> inclusive_descendant_navigables();
Vector<JS::Handle<HTML::Navigable>> ancestor_navigables();
Vector<JS::Handle<HTML::Navigable>> inclusive_ancestor_navigables();
void destroy();