blob: 91c1fa1ae2290c61a11e1064a2682e88df7fd284 (
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
|
---
title: WindowOrWorkerGlobalScope.isSecureContext
slug: Web/API/isSecureContext
translation_of: Web/API/WindowOrWorkerGlobalScope/isSecureContext
original_slug: Web/API/WindowOrWorkerGlobalScope/isSecureContext
---
{{APIRef()}}{{SeeCompatTable}}
La propriété **`isSecureContext`** de l'interface {{domxref("WindowOrWorkerGlobalScope")}} retourne un booleen indiquant si le contexte actuel est sécurisé (`true`) ou pas (`false`).
## Syntaxe
var isItSecure = self.isSecureContext; // ou simplement isSecureContext
### Valeur
Un {{domxref("Boolean")}}.
## Spécifications
| Spécifications | Statut | Commentaires |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------ | -------------------- |
| {{SpecName('Secure Contexts', '#dom-windoworworkerglobalscope-issecurecontext', 'WindowOrWorkerGlobalScope.isSecureContext')}} | {{Spec2('Secure Contexts')}} | Définition initiale. |
## Compatibilité des navigateurs
{{Compat("api.WindowOrWorkerGlobalScope.isSecureContext")}}
## Voir aussi
- [Secure contexts](/en-US/docs/Web/Security/Secure_Contexts)
|