aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/range/startcontainer/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/range/startcontainer/index.html')
-rw-r--r--files/it/web/api/range/startcontainer/index.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/files/it/web/api/range/startcontainer/index.html b/files/it/web/api/range/startcontainer/index.html
deleted file mode 100644
index e1eb8d3c7f..0000000000
--- a/files/it/web/api/range/startcontainer/index.html
+++ /dev/null
@@ -1,29 +0,0 @@
----
-title: range.startContainer
-slug: Web/API/Range/startContainer
-translation_of: Web/API/Range/startContainer
----
-<p>{{ APIRef("DOM") }}</p>
-
-<p>Restituisce il <code>Node</code> dentro il quale comincia il <code>Range</code>.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval">startRangeNode = range.startContainer;
-</pre>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre class="eval">range = document.createRange();
-range.setStart(startNode,startOffset);
-range.setEnd(endNode,endOffset);
-startRangeNode = range.startContainer;
-</pre>
-
-<h3 id="Note" name="Note">Note</h3>
-
-<p>Restituisce un riferimento al <code>Node</code> del documento, dentro il quale comincia il <code>Range</code>. Questa proprietà è di sola lettura. Per modificare la posizione dell'inizio di un nodo, si utilizzi i metodi <code>setStart</code>.</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-attr-startParent">startParent</a></p>