blob: 8009462d92ab680e1a3dbbeb98890b1888631245 (
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
48
49
50
51
52
53
54
55
56
57
58
|
---
title: Window.isSecureContext
slug: Web/API/Window/isSecureContext
tags:
- API
- Propriété
- Reference
- Sécurité
- Window
translation_of: Web/API/Window/isSecureContext
---
<p>{{APIRef}}{{SeeCompatTable}}</p>
<p>La propriété en lecteur seule <code><strong>window.isSecureContext</strong></code> indique si un contexte est capable d'utiliser des fonctionnalités qui nécessitent des <a href="/en-US/docs/Web/Security/Secure_Contexts">contextes sécurisés</a>.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox notranslate">var <em>isSecure</em> = window.isSecureContext</pre>
<h2 id="Exemples">Exemples</h2>
<h3 id="Détection_des_fonctionnalités">Détection des fonctionnalités</h3>
<p>Vous pouvez utiliser la détection des fonctionnalités pour vérifier si elles sont dans un contexte sécurisé ou non à l'aide du booléen <code>isSecureContext</code> qui est exposé sur la portée globale.</p>
<pre class="brush: js notranslate">if (window.isSecureContext) {
// La page est un contexte sécurisé afin que les techniciens de service soient désormais disponibles
navigator.serviceWorker.register("/offline-worker.js").then(function () {
...
});
}</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th>Spécification</th>
<th>Statut</th>
<th>Commentaire</th>
</tr>
<tr>
<td>{{SpecName('Secure Contexts')}}</td>
<td>{{Spec2('Secure Contexts','#monkey-patching-global-object','isSecureContext')}}</td>
<td>Spécification initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Window.isSecureContext")}}</p>
<h2 id="Voir_également">Voir également</h2>
<ul>
<li><a href="/en-US/docs/Web/Security/Secure_Contexts">Contextes sécurisés</a></li>
</ul>
|