aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/workerglobalscope/onoffline/index.html
blob: df5d70eb36c769d6c49b55d01eeff133c3600a14 (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
---
title: WorkerGlobalScope.onoffline
slug: Web/API/WorkerGlobalScope/onoffline
translation_of: Web/API/WorkerGlobalScope/onoffline
---
<p>{{APIRef("Web Workers API")}}</p>

<p>La propriété <strong><code>onoffline</code></strong> de l'interface {{domxref("WorkerGlobalScope")}} représente un {{domxref("EventHandler")}} à appeler lorsque l'événement {{event("offline")}} survient et se propage à travers le {{domxref("Worker")}}.</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre>self.onoffline = function() { ... };</pre>

<h2 id="Exemple">Exemple</h2>

<p>L'extrait de code suivant montre un gestionnaire <code>onoffline</code> placé dans un worker :</p>

<pre class="brush: js">self.onoffline = function() {
  console.log('Your worker is now offline');
}</pre>

<h2 id="Spécifications">Spécifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaire</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', "#handler-workerglobalscope-onoffline", "WorkerGlobalScope.onoffline")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>



<p>{{Compat("api.WorkerGlobalScope.onoffline")}}</p>

<h2 id="Voir_aussi">Voir aussi</h2>

<p>L'interface {{domxref("WorkerGlobalScope")}} à laquelle il appartient.</p>