From 9b77fc00ba3a5e640c4610e27276d8b7ee41c607 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 11 Dec 2023 16:16:16 +0000 Subject: [PATCH] LibWeb: Add missing FIXME to Navigable::navigate() --- Userland/Libraries/LibWeb/HTML/Navigable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/HTML/Navigable.cpp b/Userland/Libraries/LibWeb/HTML/Navigable.cpp index 4b4c985906..dc0d8b5f84 100644 --- a/Userland/Libraries/LibWeb/HTML/Navigable.cpp +++ b/Userland/Libraries/LibWeb/HTML/Navigable.cpp @@ -1274,7 +1274,7 @@ WebIDL::ExceptionOr Navigable::navigate(NavigateParams params) // 14. Let targetSnapshotParams be the result of snapshotting target snapshot params given navigable. auto target_snapshot_params = snapshot_target_snapshot_params(); - // 15. Invoke WebDriver BiDi navigation started with targetBrowsingContext, and a new WebDriver BiDi navigation status whose id is navigationId, url is url, and status is "pending". + // FIXME: 15. Invoke WebDriver BiDi navigation started with targetBrowsingContext, and a new WebDriver BiDi navigation status whose id is navigationId, url is url, and status is "pending". // 16. If navigable's ongoing navigation is "traversal", then: if (ongoing_navigation().has()) {