Content-Security-Policy: fenced-frame-src directive

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The HTTP Content-Security-Policy (CSP) fenced-frame-src directive specifies valid sources for nested browsing contexts loaded into <fencedframe> elements.

CSP version1
Directive typeFetch directive
FallbackIf this directive is absent, the user agent will look for the frame-src directive (which falls back to the child-src directive).

Syntax

http
Content-Security-Policy: fenced-frame-src <source-expression-list>;
<source-expression-list>

A space-separated list of source expression values. Resources of this type may be loaded if they match any of the given source expressions. For this directive, the following source expression values are applicable:

Examples

undefined

Violation cases

Given this CSP header:

http
Content-Security-Policy: fenced-frame-src https://example.com/

The following sources will not load in a fenced frame:

Specifications

See also