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.onerror

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

Résumé

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

Syntaxe

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

Exemple

L'extrait de code suivant montre un gestionnaire onerror placé au sein d'un worker :

self.onerror = function() {
  console.log('There is an error inside your worker!');
}

Spécifications

Spécification Statut Commentaire
WHATWG HTML Living Standard
La définition de 'WorkerGlobalScope.onerror' dans cette spécification.
Standard évolutif Pas de changement depuis Web Workers.
Web Workers
La définition de 'WorkerGlobalScope.onerror' dans cette spécification.
Candidat au statut de recommandation Définition initiale.

Compatibilité des naviguateurs

Fonctionnalité Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 4 3.5 (1.9.1) (Oui) 11.5 4
Fonctionnalité Android Chrome for Android Firefox Mobile (Gecko) Firefox OS (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? 40 1.0 (1.9.1) 1.0.1 (Oui) (Oui) 5.1

Voir aussi

L'interface WorkerGlobalScope à laquelle il appartient.

Étiquettes et contributeurs liés au document

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