diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-10 10:21:03 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-10 17:02:11 +0000 |
commit | 5d32fd7026c43c72ed3b96634a2d0d66cf2caa37 (patch) | |
tree | 175179a6484ee2408927bad37d544392c514cad0 /Userland/Libraries/LibWebView/OutOfProcessWebView.cpp | |
parent | 06f1b8825c51e26a8732687a30d80c26769458a1 (diff) | |
download | serenity-5d32fd7026c43c72ed3b96634a2d0d66cf2caa37.zip |
Browser+WebContent+WebDriver: Move Get Element Text to WebContent
Diffstat (limited to 'Userland/Libraries/LibWebView/OutOfProcessWebView.cpp')
-rw-r--r-- | Userland/Libraries/LibWebView/OutOfProcessWebView.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp index 1a47b173fc..64ef065410 100644 --- a/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp +++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.cpp @@ -559,11 +559,6 @@ void OutOfProcessWebView::scroll_element_into_view(i32 element_id) return client().scroll_element_into_view(element_id); } -String OutOfProcessWebView::get_element_text(i32 element_id) -{ - return client().get_element_text(element_id); -} - String OutOfProcessWebView::get_element_tag_name(i32 element_id) { return client().get_element_tag_name(element_id); |