1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibWeb+WebContent: Convert WebDriver to choose a navigable AO

Also use the TraversableNavigable's window_handle instead of the
BrowsingContext's.
This commit is contained in:
Andrew Kaster 2024-02-03 09:09:33 -07:00 committed by Andrew Kaster
parent 713698d2ca
commit 3aee787539
4 changed files with 18 additions and 11 deletions

View file

@ -305,7 +305,7 @@ void Navigable::set_ongoing_navigation(Variant<Empty, Traversal, String> ongoing
} }
// https://html.spec.whatwg.org/multipage/document-sequences.html#the-rules-for-choosing-a-navigable // https://html.spec.whatwg.org/multipage/document-sequences.html#the-rules-for-choosing-a-navigable
Navigable::ChosenNavigable Navigable::choose_a_navigable(StringView name, TokenizedFeature::NoOpener no_opener, ActivateTab) Navigable::ChosenNavigable Navigable::choose_a_navigable(StringView name, TokenizedFeature::NoOpener no_opener, ActivateTab activate_tab)
{ {
// NOTE: Implementation for step 7 here. // NOTE: Implementation for step 7 here.
JS::GCPtr<Navigable> same_name_navigable = nullptr; JS::GCPtr<Navigable> same_name_navigable = nullptr;
@ -412,13 +412,13 @@ Navigable::ChosenNavigable Navigable::choose_a_navigable(StringView name, Tokeni
if (!Infra::is_ascii_case_insensitive_match(name, "_blank"sv)) if (!Infra::is_ascii_case_insensitive_match(name, "_blank"sv))
target_name = MUST(String::from_utf8(name)); target_name = MUST(String::from_utf8(name));
auto create_new_traversable_closure = [this, window_type, no_opener, target_name](JS::GCPtr<BrowsingContext> opener) -> JS::NonnullGCPtr<Navigable> { auto create_new_traversable_closure = [this, window_type, no_opener, target_name, activate_tab](JS::GCPtr<BrowsingContext> opener) -> JS::NonnullGCPtr<Navigable> {
// FIXME: The popup state for window.open is calculated after this call (somehow?) // FIXME: The popup state for window.open is calculated after this call (somehow?)
// Probably want to deviate from the spec and pass the popup state in here // Probably want to deviate from the spec and pass the popup state in here
auto hints = WebViewHints { auto hints = WebViewHints {
.popup = window_type != WindowType::ExistingOrNone, .popup = window_type != WindowType::ExistingOrNone,
}; };
auto [page, window_handle] = traversable_navigable()->page().client().page_did_request_new_web_view(ActivateTab::Yes, hints, no_opener); auto [page, window_handle] = traversable_navigable()->page().client().page_did_request_new_web_view(activate_tab, hints, no_opener);
auto traversable = TraversableNavigable::create_a_new_top_level_traversable(*page, opener, target_name).release_value_but_fixme_should_propagate_errors(); auto traversable = TraversableNavigable::create_a_new_top_level_traversable(*page, opener, target_name).release_value_but_fixme_should_propagate_errors();
page->set_top_level_traversable(traversable); page->set_top_level_traversable(traversable);
traversable->set_window_handle(window_handle); traversable->set_window_handle(window_handle);

View file

@ -5,7 +5,9 @@
*/ */
#include <AK/JsonObject.h> #include <AK/JsonObject.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/BrowsingContext.h> #include <LibWeb/HTML/BrowsingContext.h>
#include <LibWeb/HTML/TraversableNavigable.h>
#include <LibWeb/HTML/WindowProxy.h> #include <LibWeb/HTML/WindowProxy.h>
#include <LibWeb/WebDriver/Contexts.h> #include <LibWeb/WebDriver/Contexts.h>
@ -16,7 +18,13 @@ JsonObject window_proxy_reference_object(HTML::WindowProxy const& window)
{ {
// 1. Let identifier be the web window identifier if the associated browsing context of window is a top-level browsing context. // 1. Let identifier be the web window identifier if the associated browsing context of window is a top-level browsing context.
// Otherwise let it be the web frame identifier. // Otherwise let it be the web frame identifier.
auto identifier = window.associated_browsing_context()->is_top_level()
// NOTE: We look at the active browsing context's active document's node navigable instead.
// Because a Browsing context's top-level traversable is this navigable's top level traversable.
// Ref: https://html.spec.whatwg.org/multipage/document-sequences.html#bc-traversable
auto traversable_navigable = window.associated_browsing_context()->active_document()->navigable()->traversable_navigable();
auto identifier = traversable_navigable->is_top_level_traversable()
? WEB_WINDOW_IDENTIFIER ? WEB_WINDOW_IDENTIFIER
: WEB_FRAME_IDENTIFIER; : WEB_FRAME_IDENTIFIER;
@ -25,7 +33,7 @@ JsonObject window_proxy_reference_object(HTML::WindowProxy const& window)
// identifier // identifier
// Associated window handle of the windows browsing context. // Associated window handle of the windows browsing context.
object.set(identifier, window.associated_browsing_context()->window_handle().to_byte_string()); object.set(identifier, traversable_navigable->window_handle().to_byte_string());
return object; return object;
} }

View file

@ -77,12 +77,12 @@ PageClient const& ConnectionFromClient::page(u64 index) const
Messages::WebContentServer::GetWindowHandleResponse ConnectionFromClient::get_window_handle(u64 page_id) Messages::WebContentServer::GetWindowHandleResponse ConnectionFromClient::get_window_handle(u64 page_id)
{ {
return page(page_id).page().top_level_browsing_context().window_handle(); return page(page_id).page().top_level_traversable()->window_handle();
} }
void ConnectionFromClient::set_window_handle(u64 page_id, String const& handle) void ConnectionFromClient::set_window_handle(u64 page_id, String const& handle)
{ {
page(page_id).page().top_level_browsing_context().set_window_handle(handle); page(page_id).page().top_level_traversable()->set_window_handle(handle);
} }
void ConnectionFromClient::connect_to_webdriver(u64 page_id, ByteString const& webdriver_ipc_path) void ConnectionFromClient::connect_to_webdriver(u64 page_id, ByteString const& webdriver_ipc_path)

View file

@ -529,7 +529,7 @@ Messages::WebDriverClient::GetTitleResponse WebDriverConnection::get_title()
// 11.1 Get Window Handle, https://w3c.github.io/webdriver/#get-window-handle // 11.1 Get Window Handle, https://w3c.github.io/webdriver/#get-window-handle
Messages::WebDriverClient::GetWindowHandleResponse WebDriverConnection::get_window_handle() Messages::WebDriverClient::GetWindowHandleResponse WebDriverConnection::get_window_handle()
{ {
return m_page_client.page().top_level_browsing_context().window_handle(); return m_page_client.page().top_level_traversable()->window_handle();
} }
// 11.2 Close Window, https://w3c.github.io/webdriver/#dfn-close-window // 11.2 Close Window, https://w3c.github.io/webdriver/#dfn-close-window
@ -578,11 +578,10 @@ Messages::WebDriverClient::NewWindowResponse WebDriverConnection::new_window(Jso
// is "window", and the implementation supports multiple browsing contexts in separate OS windows, the // is "window", and the implementation supports multiple browsing contexts in separate OS windows, the
// created browsing context should be in a new OS window. In all other cases the details of how the browsing // created browsing context should be in a new OS window. In all other cases the details of how the browsing
// context is presented to the user are implementation defined. // context is presented to the user are implementation defined.
// FIXME: Reuse code of window.open() instead of calling choose_a_browsing_context auto [navigable, window_type] = m_page_client.page().top_level_traversable()->choose_a_navigable("_blank"sv, Web::HTML::TokenizedFeature::NoOpener::Yes, Web::HTML::ActivateTab::No);
auto [browsing_context, window_type] = m_page_client.page().top_level_browsing_context().choose_a_browsing_context("_blank"sv, Web::HTML::TokenizedFeature::NoOpener::Yes, Web::HTML::ActivateTab::No);
// 6. Let handle be the associated window handle of the newly created window. // 6. Let handle be the associated window handle of the newly created window.
auto handle = browsing_context->window_handle(); auto handle = navigable->traversable_navigable()->window_handle();
// 7. Let type be "tab" if the newly created window shares an OS-level window with the current browsing context, or "window" otherwise. // 7. Let type be "tab" if the newly created window shares an OS-level window with the current browsing context, or "window" otherwise.
auto type = "tab"sv; auto type = "tab"sv;