diff options
Diffstat (limited to 'files/fr/web/api/passwordcredential/password/index.md')
-rw-r--r-- | files/fr/web/api/passwordcredential/password/index.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/files/fr/web/api/passwordcredential/password/index.md b/files/fr/web/api/passwordcredential/password/index.md new file mode 100644 index 0000000000..62421690d2 --- /dev/null +++ b/files/fr/web/api/passwordcredential/password/index.md @@ -0,0 +1,45 @@ +--- +title: PasswordCredential.password +slug: Web/API/PasswordCredential/password +tags: + - API + - Credential Management API + - PasswordCredential + - Propriété + - Reference +translation_of: Web/API/PasswordCredential/password +--- +<p>{{SeeCompatTable}}{{APIRef("")}}</p> + +<p>La propriété <strong><code>password</code></strong> est une propriété accessible en lecture seule rattachée à l'interface {{domxref("PasswordCredential")}} et fournit une chaîne de caractères {{domxref("USVString")}} contenant le mot de passe lié aux informations d'authentification.</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="syntaxbox"><em>password</em> = <em>passwordCredential</em>.password</pre> + +<h3 id="Valeur">Valeur</h3> + +<p>Une chaîne de caractères {{domxref("USVString")}} contenant le mot de passe.</p> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">État</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('Credential Management','#dom-passwordcredential-password','password')}}</td> + <td>{{Spec2('Credential Management')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.PasswordCredential.password")}}</p> |