From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- dom/webidl/CSPDictionaries.webidl | 40 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 dom/webidl/CSPDictionaries.webidl (limited to 'dom/webidl/CSPDictionaries.webidl') diff --git a/dom/webidl/CSPDictionaries.webidl b/dom/webidl/CSPDictionaries.webidl new file mode 100644 index 0000000000..a84162c6e5 --- /dev/null +++ b/dom/webidl/CSPDictionaries.webidl @@ -0,0 +1,40 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/** + * Dictionary used to display CSP info. + */ + +dictionary CSP { + boolean report-only = false; + + sequence default-src; + sequence script-src; + sequence object-src; + sequence style-src; + sequence img-src; + sequence media-src; + sequence frame-src; + sequence font-src; + sequence connect-src; + sequence report-uri; + sequence frame-ancestors; + // sequence reflected-xss; // not supported in Firefox + sequence base-uri; + sequence form-action; + sequence referrer; + sequence manifest-src; + sequence upgrade-insecure-requests; + sequence child-src; + sequence block-all-mixed-content; + sequence sandbox; + sequence worker-src; + sequence script-src-elem; + sequence script-src-attr; +}; + +[GenerateToJSON] +dictionary CSPPolicies { + sequence csp-policies; +}; -- cgit v1.2.3