From 1146f8bf49eda7f23960e2efdd6dcefb6a98b552 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sun, 5 May 2019 15:38:09 +0100 Subject: Add browser_window_exec Signed-off-by: Daniel Silverstone --- desktop/browser.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'desktop') diff --git a/desktop/browser.c b/desktop/browser.c index 1c8aa95fa..d26abd043 100644 --- a/desktop/browser.c +++ b/desktop/browser.c @@ -3406,3 +3406,24 @@ int browser_get_dpi(void) { return FIXTOINT(nscss_screen_dpi); } + +/* exported interface documented in browser.h */ +bool browser_window_exec(struct browser_window *bw, const char *src, size_t srclen) +{ + assert(bw != NULL); + + if (!bw->current_content) { + NSLOG(netsurf, DEEPDEBUG, "Unable to exec, no content"); + return false; + } + + if (content_get_status(bw->current_content) != CONTENT_STATUS_DONE) { + NSLOG(netsurf, DEEPDEBUG, "Unable to exec, content not done"); + return false; + } + + /* Okay it should be safe, forward the request through to the content + * itself. Only HTML contents currently support executing code + */ + return content_exec(bw->current_content, src, srclen); +} -- cgit v1.2.3