aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/web_workers_api
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2021-07-27 11:28:54 -0400
committerGitHub <noreply@github.com>2021-07-27 17:28:54 +0200
commitf223964e7c5c62237914625780565de982015f04 (patch)
treeb4dcbc083b8c31e5df972b507bb0874bfe956a39 /files/fr/web/api/web_workers_api
parent8fa8486a913466c012e0376c1d1a0075220aabb4 (diff)
downloadtranslated-content-f223964e7c5c62237914625780565de982015f04.tar.gz
translated-content-f223964e7c5c62237914625780565de982015f04.tar.bz2
translated-content-f223964e7c5c62237914625780565de982015f04.zip
Remove link title attributes thats just the href fr part 3 (#1734)
* remove link 'title' attributes that's just the 'href' (fr, part 3) * a couple more
Diffstat (limited to 'files/fr/web/api/web_workers_api')
-rw-r--r--files/fr/web/api/web_workers_api/functions_and_classes_available_to_workers/index.html2
-rw-r--r--files/fr/web/api/web_workers_api/structured_clone_algorithm/index.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/files/fr/web/api/web_workers_api/functions_and_classes_available_to_workers/index.html b/files/fr/web/api/web_workers_api/functions_and_classes_available_to_workers/index.html
index 1e7fcb6cf5..f43d902d87 100644
--- a/files/fr/web/api/web_workers_api/functions_and_classes_available_to_workers/index.html
+++ b/files/fr/web/api/web_workers_api/functions_and_classes_available_to_workers/index.html
@@ -134,7 +134,7 @@ original_slug: Web/API/Worker/Functions_and_classes_available_to_workers
<td>Crée un nouveau {{ domxref("Worker") }}. Oui, les workers peuvent engendrer des workers supplémentaires.</td>
<td>{{CompatGeckoDesktop("1.9.1")}}</td>
<td>10.0</td>
- <td>{{CompatNo}} Voir <a class="external" href="http://code.google.com/p/chromium/issues/detail?id=31666" rel="external" title="http://code.google.com/p/chromium/issues/detail?id=31666">crbug.com/31666</a></td>
+ <td>{{CompatNo}} Voir <a class="external" href="http://code.google.com/p/chromium/issues/detail?id=31666" rel="external">crbug.com/31666</a></td>
<td>{{CompatNo}}</td>
</tr>
<tr>
diff --git a/files/fr/web/api/web_workers_api/structured_clone_algorithm/index.html b/files/fr/web/api/web_workers_api/structured_clone_algorithm/index.html
index 8860578497..1fc2be25c8 100644
--- a/files/fr/web/api/web_workers_api/structured_clone_algorithm/index.html
+++ b/files/fr/web/api/web_workers_api/structured_clone_algorithm/index.html
@@ -4,7 +4,7 @@ slug: Web/API/Web_Workers_API/Structured_clone_algorithm
translation_of: Web/API/Web_Workers_API/Structured_clone_algorithm
original_slug: Web/API/Web_Workers_API/algorithme_clonage_structure
---
-<p>L’algorithme de clonage structuré est un nouvel algorithme <a class="external" href="http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#safe-passing-of-structured-data" title="http://www.w3.org/TR/html5/common-dom-interfaces.html#safe-passing-of-structured-data">défini par la spécification HTML5</a> pour sérialiser les objets JavaScript complexes. Il est plus puissant que <a href="/en/JSON" title="en/JSON">JSON</a> en cela qu’il supporte la sérialisation d’objets contenant des graphes cycliques — des objets peuvent faire référence à des objets faisant référence à d’autres objets dans le même graphe. De plus, dans certains cas, l’algorithme de clonage structuré peut être plus efficace que JSON.</p>
+<p>L’algorithme de clonage structuré est un nouvel algorithme <a class="external" href="http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#safe-passing-of-structured-data">défini par la spécification HTML5</a> pour sérialiser les objets JavaScript complexes. Il est plus puissant que <a href="/en/JSON" title="en/JSON">JSON</a> en cela qu’il supporte la sérialisation d’objets contenant des graphes cycliques — des objets peuvent faire référence à des objets faisant référence à d’autres objets dans le même graphe. De plus, dans certains cas, l’algorithme de clonage structuré peut être plus efficace que JSON.</p>
<p>L’algorithme, essentiellement, parcourt tous les champs de l’objet original, copiant les valeurs de chaque champ dans un nouvel objet. Si un champ est lui-même un objet avec des champs, ces champs sont parcourus de manière récursive jusqu’à ce que chaque champ et sous-champ aient été copié dans le nouvel objet.</p>
@@ -146,7 +146,7 @@ original_slug: Web/API/Web_Workers_API/algorithme_clonage_structure
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
- <li><a class="external" href="http://www.w3.org/TR/html5/infrastructure.html#safe-passing-of-structured-data" title="http://www.w3.org/TR/html5/common-dom-interfaces.html#safe-passing-of-structured-data">Spécification HTML5 : Passage sécurisé de données structurées</a></li>
+ <li><a class="external" href="http://www.w3.org/TR/html5/infrastructure.html#safe-passing-of-structured-data">Spécification HTML5 : Passage sécurisé de données structurées</a></li>
<li>{{ domxref("window.history") }}</li>
<li>{{ domxref("window.postMessage()") }}</li>
<li><a href="/en-US/docs/Web/API/Web_Workers_API">Web Workers</a></li>