aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/range/createcontextualfragment
diff options
context:
space:
mode:
authorRyan Johnson <rjohnson@mozilla.com>2021-04-29 16:16:42 -0700
committerGitHub <noreply@github.com>2021-04-29 16:16:42 -0700
commit95aca4b4d8fa62815d4bd412fff1a364f842814a (patch)
tree5e57661720fe9058d5c7db637e764800b50f9060 /files/it/web/api/range/createcontextualfragment
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/it/web/api/range/createcontextualfragment')
-rw-r--r--files/it/web/api/range/createcontextualfragment/index.html37
1 files changed, 0 insertions, 37 deletions
diff --git a/files/it/web/api/range/createcontextualfragment/index.html b/files/it/web/api/range/createcontextualfragment/index.html
deleted file mode 100644
index f56354ddc4..0000000000
--- a/files/it/web/api/range/createcontextualfragment/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: range.createContextualFragment
-slug: Web/API/Range/createContextualFragment
-translation_of: Web/API/Range/createContextualFragment
----
-<p>{{ APIRef("DOM") }}</p>
-
-<p>Restituisce un frammento di documento.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval">frammento = range.createContextualFragment( tag )
-</pre>
-
-<h3 id="Parametri" name="Parametri">Parametri</h3>
-
-<dl>
- <dt>tag </dt>
- <dd>stringa che contiene del testo da convertire in un frammento di documento</dd>
-</dl>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre class="eval">var tag = "&lt;div&gt;Ciao, sono un nodo!&lt;/div&gt;";
-var range = document.createRange();
-range.selectNode(document.getElementsByTagName("div").item(0));
-var frammento = range.createContextualFragment(tag);
-document.body.appendChild(frammento);
-</pre>
-
-<h3 id="Note" name="Note">Note</h3>
-
-<p>Questo metodo accetta una stringa e utilizza l'interprete di Mozilla per convertirla in un ramo (o un singolo nodo) del DOM.</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p>DOM Level 0. Non è parte di alcuno standard.</p>