LibWeb/CSP: Implement the script-src directive

This commit is contained in:
Luke Wilde 2024-12-02 16:01:19 +00:00 committed by Andrew Kaster
commit 0cff47828d
Notes: github-actions[bot] 2025-07-09 21:53:59 +00:00
17 changed files with 839 additions and 14 deletions

View file

@ -49,6 +49,7 @@ enum class CompilationType {
DirectEval,
IndirectEval,
Function,
Timer,
};
class JS_API VM : public RefCounted<VM> {