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

LibWeb: Add allowPOST param in populate_session_history_entry_document

This commit is contained in:
Aliaksandr Kalenik 2023-08-14 15:07:57 +02:00 committed by Andreas Kling
parent b05bd889e1
commit 38c7703fe8
3 changed files with 8 additions and 7 deletions

View file

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