LibWeb+LibWebView+WebContent: Add traverse_history_by_delta() IPC call

This commit is contained in:
Aliaksandr Kalenik 2024-04-13 22:33:48 +02:00 committed by Alexander Kalenik
parent a71b2e5fd9
commit 0c839f0421
Notes: sideshowbarker 2024-07-17 10:05:47 +09:00
7 changed files with 21 additions and 0 deletions

View file

@ -95,6 +95,11 @@ void ViewImplementation::reload()
client().async_reload(page_id());
}
void ViewImplementation::traverse_the_history_by_delta(int delta)
{
client().async_traverse_the_history_by_delta(page_id(), delta);
}
void ViewImplementation::zoom_in()
{
if (m_zoom_level >= ZOOM_MAX_LEVEL)