1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:28:11 +00:00

LibWeb: Handle window.open() when passed a navigable name

This commit is contained in:
Andrew Kaster 2023-11-28 08:36:09 -07:00 committed by Alexander Kalenik
parent e3f5bbcbbe
commit 0104c8d052
3 changed files with 47 additions and 1 deletions

View file

@ -55,6 +55,7 @@ public:
JS::GCPtr<BrowsingContext> next_sibling() const;
bool is_ancestor_of(BrowsingContext const&) const;
bool is_familiar_with(BrowsingContext const&) const;
template<typename Callback>
IterationDecision for_each_in_inclusive_subtree(Callback callback) const