1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:28:11 +00:00

WebContent: Add plumbing for 'is scripting enabled' setting

This commit is contained in:
Linus Groh 2022-03-30 23:23:14 +01:00 committed by Andreas Kling
parent 7bdbac7fd9
commit 780e5441b4
5 changed files with 13 additions and 1 deletions

View file

@ -459,4 +459,9 @@ void ConnectionFromClient::set_has_focus(bool has_focus)
m_page_host->set_has_focus(has_focus);
}
void ConnectionFromClient::set_is_scripting_enabled(bool is_scripting_enabled)
{
m_page_host->set_is_scripting_enabled(is_scripting_enabled);
}
}