diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-10 10:39:09 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-10 17:02:11 +0000 |
commit | 93e14799c5cd178716b04d104eaf164f76df7855 (patch) | |
tree | 230030b976129bc1882a0ab6693dbb6d247cd005 /Userland/Libraries/LibWebView/OutOfProcessWebView.cpp | |
parent | 30d6a73d0ee552ee889a8550b2c87cd7d10957ff (diff) | |
download | serenity-93e14799c5cd178716b04d104eaf164f76df7855.zip |
Browser+WebContent+WebDriver: Move Is Element Enabled 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 899294f7d4..8a7f03570b 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); } -bool OutOfProcessWebView::is_element_enabled(i32 element_id) -{ - return client().is_element_enabled(element_id); -} - void OutOfProcessWebView::set_content_filters(Vector<String> filters) { client().async_set_content_filters(filters); |