diff options
author | stelar7 <dudedbz@gmail.com> | 2023-05-31 00:08:14 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-06-01 14:28:52 +0200 |
commit | 266d4a35538309a89ee1c42f08c2e4501b478bd1 (patch) | |
tree | 3dab29dd2969c31f66fd92f5c6c6581a7986413b | |
parent | caa491b72ac489d93646840c26298b110523caf5 (diff) | |
download | serenity-266d4a35538309a89ee1c42f08c2e4501b478bd1.zip |
LibWeb: Implement step 7 of `choose_a_browsing_context`
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/BrowsingContext.cpp | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/BrowsingContext.cpp b/Userland/Libraries/LibWeb/HTML/BrowsingContext.cpp index 074a0de278..dc8441236b 100644 --- a/Userland/Libraries/LibWeb/HTML/BrowsingContext.cpp +++ b/Userland/Libraries/LibWeb/HTML/BrowsingContext.cpp @@ -848,6 +848,15 @@ BrowsingContext::ChosenBrowsingContext BrowsingContext::choose_a_browsing_contex { // The rules for choosing a browsing context, given a browsing context name name, a browsing context current, and // a boolean noopener are as follows: + JS::GCPtr<AbstractBrowsingContext> matching_name_in_tree = nullptr; + top_level_browsing_context().for_each_in_subtree([&](auto& context) { + if (context.name() == name) { + matching_name_in_tree = &context; + return IterationDecision::Break; + } + + return IterationDecision::Continue; + }); // 1. Let chosen be null. JS::GCPtr<AbstractBrowsingContext> chosen = nullptr; @@ -878,15 +887,14 @@ BrowsingContext::ChosenBrowsingContext BrowsingContext::choose_a_browsing_contex chosen = &top_level_browsing_context(); } - // FIXME: 7. Otherwise, if name is not an ASCII case-insensitive match for "_blank", there exists a browsing context - // whose name is the same as name, current is familiar with that browsing context, and the user agent - // determines that the two browsing contexts are related enough that it is ok if they reach each other, - // set chosen to that browsing context. If there are multiple matching browsing contexts, the user agent - // should set chosen to one in some arbitrary consistent manner, such as the most recently opened, most - // recently focused, or more closely related. - else if (!Infra::is_ascii_case_insensitive_match(name, "_blank"sv)) { - dbgln("FIXME: Find matching browser context for name {}", name); - chosen = this; + // 7. Otherwise, if name is not an ASCII case-insensitive match for "_blank", there exists a browsing context + // whose name is the same as name, current is familiar with that browsing context, and the user agent + // determines that the two browsing contexts are related enough that it is ok if they reach each other, + // set chosen to that browsing context. If there are multiple matching browsing contexts, the user agent + // should set chosen to one in some arbitrary consistent manner, such as the most recently opened, most + // recently focused, or more closely related. + else if (!Infra::is_ascii_case_insensitive_match(name, "_blank"sv) && matching_name_in_tree) { + chosen = matching_name_in_tree; } else { // 8. Otherwise, a new browsing context is being requested, and what happens depends on the user agent's // configuration and abilities — it is determined by the rules given for the first applicable option from |