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

LibWeb: Add Navigable::set_ongoing_navigation()

This commit is contained in:
Aliaksandr Kalenik 2023-08-22 15:22:50 +02:00 committed by Andreas Kling
parent aa0d254fa3
commit 09013583f2
3 changed files with 17 additions and 3 deletions

View file

@ -105,6 +105,7 @@ public:
};
Variant<Empty, Traversal, String> ongoing_navigation() const { return m_ongoing_navigation; }
void set_ongoing_navigation(Variant<Empty, Traversal, String> ongoing_navigation);
WebIDL::ExceptionOr<void> populate_session_history_entry_document(JS::GCPtr<SessionHistoryEntry>, Optional<NavigationParams>, Optional<String> navigation_id, SourceSnapshotParams const&, bool allow_POST, Function<void()>);