diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/sharedworkerglobalscope/applicationcache | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/sharedworkerglobalscope/applicationcache')
-rw-r--r-- | files/fr/web/api/sharedworkerglobalscope/applicationcache/index.md | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/files/fr/web/api/sharedworkerglobalscope/applicationcache/index.md b/files/fr/web/api/sharedworkerglobalscope/applicationcache/index.md index 7440932b75..c04e93531d 100644 --- a/files/fr/web/api/sharedworkerglobalscope/applicationcache/index.md +++ b/files/fr/web/api/sharedworkerglobalscope/applicationcache/index.md @@ -3,36 +3,34 @@ title: SharedWorkerGlobalScope.applicationCache slug: Web/API/SharedWorkerGlobalScope/applicationCache translation_of: Web/API/SharedWorkerGlobalScope/applicationCache --- -<div>{{APIRef("Web Workers API")}}</div> +{{APIRef("Web Workers API")}} -<div class="warning"> -<p><strong>Attention :</strong> Application Cache est déprécié depuis Firefox 44, et ne sera plus disponible dans des contextes non sécurisés avant Firefox 60 ({{bug(1354175)}}, currently uniquement sur les versions Nightly/Beta). Ne pas utiliser cette fonctionnalité sur des sites web en production, utilisez plutôt les <a href="/fr/docs/Web/API/Service_Worker_API">services workers.</a></p> -</div> +> **Attention :** Application Cache est déprécié depuis Firefox 44, et ne sera plus disponible dans des contextes non sécurisés avant Firefox 60 ({{bug(1354175)}}, currently uniquement sur les versions Nightly/Beta). Ne pas utiliser cette fonctionnalité sur des sites web en production, utilisez plutôt les [services workers.](/fr/docs/Web/API/Service_Worker_API) -<p>La propriété en lecture seule <code><strong>applicationCache</strong></code> de l'interface {{domxref("SharedWorkerGlobalScope")}} retourne l'objet {{domxref("ApplicationCache")}} pour le <em>worker</em> (voir <a href="/fr/docs/Web/HTML/Using_the_application_cache">Utiliser le cache d'application</a>).</p> +La propriété en lecture seule **`applicationCache`** de l'interface {{domxref("SharedWorkerGlobalScope")}} retourne l'objet {{domxref("ApplicationCache")}} pour le _worker_ (voir [Utiliser le cache d'application](/fr/docs/Web/HTML/Using_the_application_cache)). -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="brush: js">var nameObj = self.applicationCache;</pre> +```js +var nameObj = self.applicationCache; +``` -<h3 id="valeur">valeur</h3> +### valeur -<p>Un {{domxref("ApplicationCache")}}.</p> +Un {{domxref("ApplicationCache")}}. -<h2 id="Exemple">Exemple</h2> +## Exemple -<p>Si un <em>worker</em> partagé a un AppCache, vous pouvez récupérer une référence en utilisant à l'intérieur d'un <em>worker</em> partagé:</p> +Si un _worker_ partagé a un AppCache, vous pouvez récupérer une référence en utilisant à l'intérieur d'un _worker_ partagé: -<pre class="brush: js">self.applicationCache</pre> +```js +self.applicationCache +``` -<h2 id="Browser_Compatibility">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs +{{Compat("api.SharedWorkerGlobalScope.applicationCache")}} +## Voir aussi -<p>{{Compat("api.SharedWorkerGlobalScope.applicationCache")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>{{domxref("SharedWorkerGlobalScope")}}</li> -</ul> +- {{domxref("SharedWorkerGlobalScope")}} |