1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +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:
Andreas Kling 2021-08-24 16:56:42 +02:00
parent 6b2aadce11
commit fd922cf92f
5 changed files with 27 additions and 0 deletions

View file

@ -30,6 +30,8 @@ endpoint WebContentServer
js_console_initialize() =|
js_console_input(String js_source) =|
run_javascript(String js_source) =|
get_selected_text() => (String selection)
select_all() =|
}