From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/web/api/node/normalize/index.html | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 files/fr/web/api/node/normalize/index.html (limited to 'files/fr/web/api/node/normalize') diff --git a/files/fr/web/api/node/normalize/index.html b/files/fr/web/api/node/normalize/index.html new file mode 100644 index 0000000000..c58ba06945 --- /dev/null +++ b/files/fr/web/api/node/normalize/index.html @@ -0,0 +1,40 @@ +--- +title: element.normalize +slug: Web/API/Node/normalize +translation_of: Web/API/Node/normalize +--- +

{{ ApiRef("DOM") }}

+ +

Résumé

+ +

Place le nœud spécifié et tout son sous-arbre dans une forme « normale ». Dans un sous-arbre normalisé, aucun nœud texte n'est vide et il n'y a pas de nœuds texte adjacents.

+ +

Syntaxe

+ +
élément.normalize();
+
+ +

Exemple

+ +
var conteneur = document.createElement("div");
+conteneur.appendChild( document.createTextNode("Partie 1 ") );
+conteneu.appendChild( document.createTextNode("Partie 2 ") );
+
+// Ici, conteneur.childNodes.length === 2
+// conteneur.childNodes[0].textContent === "Partie 1 "
+// conteneur.childNodes[1].textContent === "Partie 2 "
+
+conteneur.normalize();
+
+// À présent, conteneur.childNodes.length === 1
+// conteneur.childNodes[0].textContent === "Partie 1 Partie 2 "
+ +

Notes

+ +

Spécification

+ + + +

{{ languages( { "en": "en/DOM/element.normalize", "pl": "pl/DOM/element.normalize" } ) }}

-- cgit v1.2.3-54-g00ecf