diff options
Diffstat (limited to 'files/fr/web/api/htmliframeelement/featurepolicy/index.md')
-rw-r--r-- | files/fr/web/api/htmliframeelement/featurepolicy/index.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/files/fr/web/api/htmliframeelement/featurepolicy/index.md b/files/fr/web/api/htmliframeelement/featurepolicy/index.md new file mode 100644 index 0000000000..54bcd1037e --- /dev/null +++ b/files/fr/web/api/htmliframeelement/featurepolicy/index.md @@ -0,0 +1,46 @@ +--- +title: HTMLIFrameElement.featurePolicy +slug: Web/API/HTMLIFrameElement/featurePolicy +tags: + - API + - Feature Policy + - Feature-Policy + - HTMLIFrameElement + - Policy + - Property +translation_of: Web/API/HTMLIFrameElement/featurePolicy +--- +<div>{{APIRef("Feature Policy API")}}{{SeeCompatTable}}</div> + +<p>La propriété en lecture seule <strong><code>featurePolicy</code></strong> de l'interface {{DOMxRef("HTMLIFrameElement")}} retourne l'interface {{DOMxRef("FeaturePolicy")}}, qui fournit une API simple pour consulter facilement les règles de fonctionnalités appliquées à un élément <code><iframe></code> spécifique.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox">var policy = <em>HTMLIFrameElement</em>.featurePolicy</pre> + +<h3 id="Valeur">Valeur</h3> + +<p>Un objet <a href="/en-US/docs/Web/API/FeaturePolicy"><code>FeaturePolicy</code></a> pouvant être utilisé pour consulter les paramètres Feature Policy appliqués au cadre.</p> + +<h2 id="Spécification">Spécification</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaire</th> + </tr> + <tr> + <td>{{SpecName("Feature Policy")}}</td> + <td>{{Spec2("Feature Policy")}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + + + +<p>{{Compat("api.HTMLIFrameElement.featurePolicy")}}</p> |