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

LibWeb: Implement "finalize a same-document navigation"

This commit is contained in:
Aliaksandr Kalenik 2023-08-20 14:28:33 +02:00 committed by Andreas Kling
parent 37f5253ec9
commit d5adb7f10c
2 changed files with 46 additions and 0 deletions

View file

@ -75,4 +75,6 @@ private:
SessionHistoryTraversalQueue m_session_history_traversal_queue;
};
void finalize_a_same_document_navigation(JS::NonnullGCPtr<TraversableNavigable> traversable, JS::NonnullGCPtr<Navigable> target_navigable, JS::NonnullGCPtr<SessionHistoryEntry> target_entry, JS::GCPtr<SessionHistoryEntry> entry_to_replace);
}