mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-20 12:27:42 +00:00
WebDriver: Implement POST /session/{id}/forward endpoint
This commit is contained in:
committed by
Linus Groh
parent
9132656856
commit
a4fa604bde
@@ -60,4 +60,11 @@ void WebDriverConnection::back()
|
||||
browser_window->active_tab().go_back();
|
||||
}
|
||||
|
||||
void WebDriverConnection::forward()
|
||||
{
|
||||
dbgln("WebDriverConnection: forward");
|
||||
if (auto browser_window = m_browser_window.strong_ref())
|
||||
browser_window->active_tab().go_forward();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user