Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

WorkerGlobalScope.onoffline

Cette traduction est incomplète. Aidez à traduire cet article depuis l'anglais.

Résumé

La propriété onoffline de l'interface WorkerGlobalScope représente un EventHandler à appeler lorsque l'événement offline survient et se propage à travers le Worker.

Syntaxe

self.onoffline = function() { ... };

Exemple

L'extrait de code suivant montre un gestionnaire onoffline placé dans un worker :

self.onoffline = function() {
  console.log('Your worker is now offline');
}

Spécifications

Spécification Statut Commentaire
WHATWG HTML Living Standard
La définition de 'WorkerGlobalScope.onoffline' dans cette spécification.
Living Standard Aucune modification de Web Workers.
Web Workers
La définition de 'WorkerGlobalScope.onoffline' dans cette spécification.
Candidate Recommendation Définition initiale.

Compatibilité des navigateurs

Fonctionnalité Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 4 29 (29) (Oui) (Oui) (Oui)
Fonctionnalité Android Chrome for Android Firefox Mobile (Gecko) Firefox OS (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 40 29.0 (29) 1.4 ? ? ?

Voir aussi

L'interface WorkerGlobalScope à laquelle il appartient.

Étiquettes et contributeurs liés au document

 Contributeurs à cette page : jean-pierre.gay
 Dernière mise à jour par : jean-pierre.gay,