mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:28:11 +00:00
Ladybird: Replace history entry if loading URL because of a redirect
We now replace the current history entry if the page-load has been caused because of a redirect. This makes it able to traverse the history if one of the entries redirects you, which previously caused an infinite history traversion loop. Depends on https://github.com/SerenityOS/serenity/pull/16004
This commit is contained in:
parent
ec55b13e96
commit
97dd5a085f
3 changed files with 11 additions and 5 deletions
|
@ -123,7 +123,7 @@ public:
|
|||
virtual void notify_server_did_unhover_link(Badge<WebContentClient>) override;
|
||||
virtual void notify_server_did_click_link(Badge<WebContentClient>, const AK::URL&, String const& target, unsigned modifiers) override;
|
||||
virtual void notify_server_did_middle_click_link(Badge<WebContentClient>, const AK::URL&, String const& target, unsigned modifiers) override;
|
||||
virtual void notify_server_did_start_loading(Badge<WebContentClient>, const AK::URL&) override;
|
||||
virtual void notify_server_did_start_loading(Badge<WebContentClient>, const AK::URL&, bool) override;
|
||||
virtual void notify_server_did_finish_loading(Badge<WebContentClient>, const AK::URL&) override;
|
||||
virtual void notify_server_did_request_navigate_back(Badge<WebContentClient>) override;
|
||||
virtual void notify_server_did_request_navigate_forward(Badge<WebContentClient>) override;
|
||||
|
@ -163,7 +163,7 @@ signals:
|
|||
void link_unhovered();
|
||||
void back_mouse_button();
|
||||
void forward_mouse_button();
|
||||
void load_started(const URL&);
|
||||
void load_started(const URL&, bool);
|
||||
void title_changed(QString);
|
||||
void favicon_changed(QIcon);
|
||||
void got_source(URL, QString);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue