LibWeb: Add OOPWV IPC for selecting all text

This commit is contained in:
Timothy Flynn 2021-07-14 08:53:55 -04:00 committed by Andreas Kling
parent fea7e84b26
commit ae910e4370
Notes: sideshowbarker 2024-07-18 09:03:19 +09:00
5 changed files with 14 additions and 0 deletions

View file

@ -417,4 +417,9 @@ String OutOfProcessWebView::selected_text()
return client().get_selected_text();
}
void OutOfProcessWebView::select_all()
{
client().async_select_all();
}
}