mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:55:08 +00:00
LibWeb+WebContent: Add a simple API for running arbitrary JavaScript
This patch adds OutOfProcessWebView::run_javascript(StringView). This can be used by the OOPWV embedder to execute arbitrary JavaScript in the top-level browsing context on the WebContent process side.
This commit is contained in:
parent
6b2aadce11
commit
fd922cf92f
5 changed files with 27 additions and 0 deletions
|
@ -412,6 +412,11 @@ void OutOfProcessWebView::js_console_input(const String& js_source)
|
|||
client().async_js_console_input(js_source);
|
||||
}
|
||||
|
||||
void OutOfProcessWebView::run_javascript(StringView js_source)
|
||||
{
|
||||
client().async_run_javascript(js_source);
|
||||
}
|
||||
|
||||
String OutOfProcessWebView::selected_text()
|
||||
{
|
||||
return client().get_selected_text();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue