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

Ladybird: Implement WebDriver's navigation and window control endpoints

This commit is contained in:
Timothy Flynn 2022-11-14 11:24:06 -05:00 committed by Andrew Kaster
parent 4031630b49
commit 54321f49ad
3 changed files with 47 additions and 7 deletions

View file

@ -160,6 +160,15 @@ signals:
void title_changed(QString);
void favicon_changed(QIcon);
void got_source(URL, QString);
void navigate_back();
void navigate_forward();
void refresh();
void restore_window();
Gfx::IntPoint reposition_window(Gfx::IntPoint const&);
Gfx::IntSize resize_window(Gfx::IntSize const&);
Gfx::IntRect maximize_window();
Gfx::IntRect minimize_window();
Gfx::IntRect fullscreen_window();
private:
void request_repaint();