blob: 4c2dbbe9bae93e5aaa04b525d2728f54282a6d42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
title: Document.featurePolicy
slug: Web/API/Document/featurePolicy
tags:
- API
- Document
- Feature Policy
- Feature-Policy
- Reference
translation_of: Web/API/Document/featurePolicy
---
<p>{{APIRef("Feature Policy")}}</p>
<p>La propriété en lecture seule <strong><code>featurePolicy</code></strong> de l'interface {{domxref("Document")}} retourne l'interface {{domxref("FeaturePolicy")}}, qui fournit une API permettant de consulter facilement les règles de fonctionnalités appliquées sur un document spécifique.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="notranslate">var <var>policy</var> = <var>iframeElement</var>.featurePolicy</pre>
<h3 id="Valeur">Valeur</h3>
<p>Un objet {{domxref("FeaturePolicy")}} pouvant être utilisé pour consulter les paramètres de Feature Policy appliqués au document.</p>
<h2 id="Spécification">Spécification</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<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.Document.featurePolicy")}}</p>
|