aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2021-09-27 19:52:26 +0200
committerGitHub <noreply@github.com>2021-09-27 19:52:26 +0200
commitb57379257281efd293e51237969a8553a7c58ae7 (patch)
tree37d1e1dee8f3ab8a5e4d953d121f80f647a94b5e /files/fr/web/api/document
parentf139538f3148990f7b61d94f75d96381985a0c0e (diff)
downloadtranslated-content-b57379257281efd293e51237969a8553a7c58ae7.tar.gz
translated-content-b57379257281efd293e51237969a8553a7c58ae7.tar.bz2
translated-content-b57379257281efd293e51237969a8553a7c58ae7.zip
Fix web api fr upstream h2m (#2597)
* fix html examples with script * remove languages macro * enclose code words in <code> to avoid dot escape
Diffstat (limited to 'files/fr/web/api/document')
-rw-r--r--files/fr/web/api/document/drag_event/index.html2
-rw-r--r--files/fr/web/api/document/dragend_event/index.html2
-rw-r--r--files/fr/web/api/document/dragenter_event/index.html2
-rw-r--r--files/fr/web/api/document/dragleave_event/index.html2
-rw-r--r--files/fr/web/api/document/dragover_event/index.html2
-rw-r--r--files/fr/web/api/document/drop_event/index.html2
-rw-r--r--files/fr/web/api/document/elementfrompoint/index.html2
-rw-r--r--files/fr/web/api/document/getelementsbytagnamens/index.html8
-rw-r--r--files/fr/web/api/document/ononline/index.html2
-rw-r--r--files/fr/web/api/document/title/index.html2
-rw-r--r--files/fr/web/api/document/write/index.html2
11 files changed, 14 insertions, 14 deletions
diff --git a/files/fr/web/api/document/drag_event/index.html b/files/fr/web/api/document/drag_event/index.html
index e244f365a0..18ffca7385 100644
--- a/files/fr/web/api/document/drag_event/index.html
+++ b/files/fr/web/api/document/drag_event/index.html
@@ -138,7 +138,7 @@ translation_of: Web/API/Document/drag_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
This div is draggable
&lt;/div&gt;
diff --git a/files/fr/web/api/document/dragend_event/index.html b/files/fr/web/api/document/dragend_event/index.html
index ce28cf1673..8435a6c7e4 100644
--- a/files/fr/web/api/document/dragend_event/index.html
+++ b/files/fr/web/api/document/dragend_event/index.html
@@ -136,7 +136,7 @@ translation_of: Web/API/Document/dragend_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
This div is draggable
&lt;/div&gt;
diff --git a/files/fr/web/api/document/dragenter_event/index.html b/files/fr/web/api/document/dragenter_event/index.html
index 7f95865724..370d84b4d3 100644
--- a/files/fr/web/api/document/dragenter_event/index.html
+++ b/files/fr/web/api/document/dragenter_event/index.html
@@ -138,7 +138,7 @@ translation_of: Web/API/Document/dragenter_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
This div is draggable
&lt;/div&gt;
diff --git a/files/fr/web/api/document/dragleave_event/index.html b/files/fr/web/api/document/dragleave_event/index.html
index 9221441d5f..b8624adb26 100644
--- a/files/fr/web/api/document/dragleave_event/index.html
+++ b/files/fr/web/api/document/dragleave_event/index.html
@@ -136,7 +136,7 @@ translation_of: Web/API/Document/dragleave_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
This div is draggable
&lt;/div&gt;
diff --git a/files/fr/web/api/document/dragover_event/index.html b/files/fr/web/api/document/dragover_event/index.html
index aca2e8a435..eb7ab548fd 100644
--- a/files/fr/web/api/document/dragover_event/index.html
+++ b/files/fr/web/api/document/dragover_event/index.html
@@ -138,7 +138,7 @@ translation_of: Web/API/Document/dragover_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
This div is draggable
&lt;/div&gt;
diff --git a/files/fr/web/api/document/drop_event/index.html b/files/fr/web/api/document/drop_event/index.html
index bb3c695f26..64453e9860 100644
--- a/files/fr/web/api/document/drop_event/index.html
+++ b/files/fr/web/api/document/drop_event/index.html
@@ -138,7 +138,7 @@ translation_of: Web/API/Document/drop_event
<h2 id="Exemple">Exemple</h2>
-<pre class="brush: js">&lt;div class="dropzone"&gt;
+<pre class="brush: html">&lt;div class="dropzone"&gt;
&lt;div id="draggable" draggable="true" ondragstart="event.dataTransfer.setData('text/plain',null)"&gt;
Cette div peut être glissée
&lt;/div&gt;
diff --git a/files/fr/web/api/document/elementfrompoint/index.html b/files/fr/web/api/document/elementfrompoint/index.html
index 6a4a1f9dfd..8028725d21 100644
--- a/files/fr/web/api/document/elementfrompoint/index.html
+++ b/files/fr/web/api/document/elementfrompoint/index.html
@@ -19,7 +19,7 @@ original_slug: Web/API/DocumentOrShadowRoot/elementFromPoint
<li><code>x</code> et <code>y</code> spécifient les coordonnées à vérifier.</li>
</ul>
<h3 id="Exemple">Exemple</h3>
-<pre>&lt;html&gt;
+<pre class="brush: html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Exemple d'utilisation d'elementFromPoint&lt;/title&gt;
diff --git a/files/fr/web/api/document/getelementsbytagnamens/index.html b/files/fr/web/api/document/getelementsbytagnamens/index.html
index 7397cc7507..a91fcc93bb 100644
--- a/files/fr/web/api/document/getelementsbytagnamens/index.html
+++ b/files/fr/web/api/document/getelementsbytagnamens/index.html
@@ -39,7 +39,7 @@ translation_of: Web/API/Document/getElementsByTagNameNS
<p>Pour utiliser l'exemple suivant, il suffit de le copier/coller dans un nouveau fichier enregistré avec l'extension .xhtml.</p>
-<pre>http://www.w3.org/1999/xhtml</a>"&gt;
+<pre class="brush: html">http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;title&gt;getElementsByTagNameNS example&lt;/title&gt;
@@ -48,7 +48,7 @@ translation_of: Web/API/Document/getElementsByTagNameNS
function getAllParaElems()
{
- var allParas = document.getElementsByTagNameNS("<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>", "p");
+ var allParas = document.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "p");
var num = allParas.length;
@@ -59,7 +59,7 @@ function getAllParaElems()
function div1ParaElems()
{
var div1 = document.getElementById("div1")
- var div1Paras = div1.getElementsByTagNameNS("<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>", "p");
+ var div1Paras = div1.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "p");
var num = div1Paras.length;
@@ -70,7 +70,7 @@ function div1ParaElems()
function div2ParaElems()
{
var div2 = document.getElementById("div2")
- var div2Paras = div2.getElementsByTagNameNS("<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>", "p");
+ var div2Paras = div2.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "p");
var num = div2Paras.length;
diff --git a/files/fr/web/api/document/ononline/index.html b/files/fr/web/api/document/ononline/index.html
index 251bf34aab..0665ed87be 100644
--- a/files/fr/web/api/document/ononline/index.html
+++ b/files/fr/web/api/document/ononline/index.html
@@ -13,7 +13,7 @@ translation_of: Web/API/Document/ononline
<p>Un évènement "<code>online</code>" est lancé sur le <code>&lt;body&gt;</code> (<em>corps</em>) de chaque page quand le navigateur bascule entre les modes online (<em>en ligne</em>) et offline (<em>hors ligne</em>). De plus les évènements se propagent de <code>document.body</code> vers <code>document</code> et finalement sur <code>window</code>. Les deux évènements ne sont pas annulables (vous ne pouvez pas empêcher l'utilisateur de se connecter ou de vous déconnecter).</p>
-<p>window.navigator.onLine renvoie un booléen <em>true</em> (<em>vrai</em>) si le navigateur est online et false s'il est définitivement offline (déconnecté du réseau). Les évènements online et offline sont lancés si la valeur de cet attribut change.</p>
+<p><code>window.navigator.onLine</code> renvoie un booléen <em>true</em> (<em>vrai</em>) si le navigateur est online et false s'il est définitivement offline (déconnecté du réseau). Les évènements online et offline sont lancés si la valeur de cet attribut change.</p>
<div class="note">
<p><strong>Note :</strong> Il est important de noter que cet événement et cet attribut sont intrinsèquement peu fiables. Un ordinateur peut être connecté à un réseau sans avoir accès à Internet.</p>
diff --git a/files/fr/web/api/document/title/index.html b/files/fr/web/api/document/title/index.html
index 003f214380..8744193915 100644
--- a/files/fr/web/api/document/title/index.html
+++ b/files/fr/web/api/document/title/index.html
@@ -21,7 +21,7 @@ translation_of: Web/API/Document/title
<h2 id="Example">Exemple</h2>
-<pre class="brush:js">&lt;!DOCTYPE html&gt;
+<pre class="brush:html">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Hello World!&lt;/title&gt;
diff --git a/files/fr/web/api/document/write/index.html b/files/fr/web/api/document/write/index.html
index 30a3d4da6b..deac04e6b3 100644
--- a/files/fr/web/api/document/write/index.html
+++ b/files/fr/web/api/document/write/index.html
@@ -31,7 +31,7 @@ translation_of: Web/API/Document/write
<h3 id="Exemple">Exemple</h3>
-<pre>&lt;html&gt;
+<pre class="brush: html">&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Exemple de document.write&lt;/title&gt;