1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:47:35 +00:00

Browser+LibWebView: Add a Tab hook to take a screenshot

This commit is contained in:
Timothy Flynn 2022-11-02 12:58:22 -04:00 committed by Linus Groh
parent 819598aecf
commit d603585802
4 changed files with 14 additions and 0 deletions

View file

@ -583,6 +583,10 @@ void BrowserWindow::create_new_tab(URL url, bool activate)
return active_tab().view().get_session_storage_entries();
};
new_tab.on_take_screenshot = [this]() {
return active_tab().view().take_screenshot();
};
new_tab.webdriver_endpoints().on_get_document_element = [this]() {
return active_tab().view().get_document_element();
};