diff options
author | Linus Groh <mail@linusgroh.de> | 2023-01-12 20:42:42 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-12 23:39:36 +0100 |
commit | 5bf5697f16249954a55be564c944325057f49027 (patch) | |
tree | ca5c151a14d79e363dc557f2aab88e1e55e0827d /Userland/Libraries/LibWebView/ViewImplementation.h | |
parent | 8c11a2c2532dff7d9cb9aabd0a0989b2b8859105 (diff) | |
download | serenity-5bf5697f16249954a55be564c944325057f49027.zip |
LibWebView+Ladybird: Move text selection to ViewImplementation
Diffstat (limited to 'Userland/Libraries/LibWebView/ViewImplementation.h')
-rw-r--r-- | Userland/Libraries/LibWebView/ViewImplementation.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWebView/ViewImplementation.h b/Userland/Libraries/LibWebView/ViewImplementation.h index 8573a085ec..5ab594e90e 100644 --- a/Userland/Libraries/LibWebView/ViewImplementation.h +++ b/Userland/Libraries/LibWebView/ViewImplementation.h @@ -38,6 +38,9 @@ public: void zoom_out(); void reset_zoom(); + DeprecatedString selected_text(); + void select_all(); + void get_source(); void inspect_dom_tree(); |