aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/node/lastchild/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/node/lastchild/index.html')
-rw-r--r--files/it/web/api/node/lastchild/index.html59
1 files changed, 0 insertions, 59 deletions
diff --git a/files/it/web/api/node/lastchild/index.html b/files/it/web/api/node/lastchild/index.html
deleted file mode 100644
index 34804c5644..0000000000
--- a/files/it/web/api/node/lastchild/index.html
+++ /dev/null
@@ -1,59 +0,0 @@
----
-title: Node.lastChild
-slug: Web/API/Node/lastChild
-translation_of: Web/API/Node/lastChild
----
-<div>{{APIRef("DOM")}}</div>
-
-<p>La proprietà di sola lettura <code><strong>Node.lastChild</strong></code> restituisce l'ultimo figlio del nodo. Se il suo genitore è un elemento, allora il bambino è generalmente un nodo di elemento, un nodo di testo o un nodo di commento. Restituisce <code>null</code> se non ci sono elementi figli.</p>
-
-<h2 id="Sintassi">Sintassi</h2>
-
-<pre class="syntaxbox">var <var>childNode</var> = <var>node</var>.lastChild;
-</pre>
-
-<h2 id="Esempio">Esempio</h2>
-
-<pre class="brush: js">var tr = document.getElementById("row1");
-var corner_td = tr.lastChild;
-</pre>
-
-<h2 id="Specifiche">Specifiche</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specifica</th>
- <th scope="col">Stato</th>
- <th scope="col">Commento</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('DOM WHATWG', '#dom-node-lastchild', 'Node.lastChild')}}</td>
- <td>{{Spec2('DOM WHATWG')}}</td>
- <td>Nessun cambiamento</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM3 Core', 'core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
- <td>{{Spec2('DOM3 Core')}}</td>
- <td>Nessun cambiamento</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM2 Core', 'core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
- <td>{{Spec2('DOM2 Core')}}</td>
- <td>Nessun cambiamento</td>
- </tr>
- <tr>
- <td>{{SpecName('DOM1', 'level-one-core.html#ID-61AD09FB', 'Node.lastChild')}}</td>
- <td>{{Spec2('DOM1')}}</td>
- <td>Definizione iniziale</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Compatibilità_con_i_browser">Compatibilità con i browser</h2>
-
-
-
-<p>{{Compat("api.Node.lastChild")}}</p>