diff options
Diffstat (limited to 'files/fr/web/api/htmliframeelement/csp/index.md')
-rw-r--r-- | files/fr/web/api/htmliframeelement/csp/index.md | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/files/fr/web/api/htmliframeelement/csp/index.md b/files/fr/web/api/htmliframeelement/csp/index.md index b07bf82f45..d435b7918a 100644 --- a/files/fr/web/api/htmliframeelement/csp/index.md +++ b/files/fr/web/api/htmliframeelement/csp/index.md @@ -1,26 +1,28 @@ --- title: HTMLIFrameElement.csp slug: Web/API/HTMLIFrameElement/csp +translation_of: HTMLIFrameElement.csp browser-compat: api.HTMLIFrameElement.csp -translation_of: 'HTMLIFrameElement.csp' --- -<p>{{SeeCompatTable}}{{APIRef("HTML DOM")}}</p> +{{SeeCompatTable}}{{APIRef("HTML DOM")}} -<p>La propriété <strong><code>csp</code></strong> de l'interface {{domxref("HTMLIFrameElement")}} spécifie la <a href="/fr/docs/Web/HTTP/CSP">stratégie de sécurité du contenu (en anglais <i lang="en">Content Security Policy (CSP)</i>)</a> qu'un document embarqué doit accepter de respecter.</p> +La propriété **`csp`** de l'interface {{domxref("HTMLIFrameElement")}} spécifie la [stratégie de sécurité du contenu (en anglais <i lang="en">Content Security Policy (CSP)</i>)](/fr/docs/Web/HTTP/CSP) qu'un document embarqué doit accepter de respecter. -<h2 id="syntax">Syntaxe</h2> +## Syntaxe -<pre class="brush: js">var <em>csp</em> = HTMLIFrameElement.csp -HTMLIFrameElement.csp = <em>csp</em></pre> +```js +var csp = HTMLIFrameElement.csp +HTMLIFrameElement.csp = csp +``` -<h3 id="value">Valeur</h3> +### Valeur -<p>Une <a href="https://w3c.github.io/webappsec-cspee/#dom-htmliframeelement-csp">stratégie de sécurité du contenu</a>.</p> +Une [stratégie de sécurité du contenu](https://w3c.github.io/webappsec-cspee/#dom-htmliframeelement-csp). -<h2 id="specifications">Spécifications</h2> +## Spécifications -<p>{{Specifications}}</p> +{{Specifications}} -<h2 id="browser_compatibility">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat}}</p> +{{Compat}} |