aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/document')
-rw-r--r--files/it/web/api/document/firstchild/index.html41
-rw-r--r--files/it/web/api/document/namespaceuri/index.html30
-rw-r--r--files/it/web/api/document/stylesheets/index.html44
3 files changed, 0 insertions, 115 deletions
diff --git a/files/it/web/api/document/firstchild/index.html b/files/it/web/api/document/firstchild/index.html
deleted file mode 100644
index 99a2a04fc2..0000000000
--- a/files/it/web/api/document/firstchild/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: document.firstChild
-slug: Web/API/Document/firstChild
-translation_of: Web/API/Node/firstChild
-translation_of_original: Web/API/document.firstChild
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code>document.firstChild</code> restituisce il primo nodo figlio del documento.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval"><i>child = document.firstChild</i>
-</pre>
-
-<h3 id="Parametri" name="Parametri">Parametri</h3>
-
-<ul>
- <li><code>figlio</code> è un nodo di tipo <a href="it/DOM/element">element</a>.</li>
-</ul>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre>function primoFiglio() {
- f = document.firstChild;
- alert(f.tagName);
-}
-// restituisce [object DocumentType] se il documento ha una DTD
-// altrimenti restituisce "HTML"
-
-// Per un documento HTML che ha una DTD
-// document.firstChild
-// restituisce [object DocumentType]
-
-</pre>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-169727388">DOM Level 2 Core: firstChild</a></p>
-
-<p>{{ languages( { "pl": "pl/DOM/document.firstChild" } ) }}</p>
diff --git a/files/it/web/api/document/namespaceuri/index.html b/files/it/web/api/document/namespaceuri/index.html
deleted file mode 100644
index fc29e0f121..0000000000
--- a/files/it/web/api/document/namespaceuri/index.html
+++ /dev/null
@@ -1,30 +0,0 @@
----
-title: document.namespaceURI
-slug: Web/API/Document/namespaceURI
-translation_of: Web/API/Node/namespaceURI
-translation_of_original: Web/API/Document/namespaceURI
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code>namespaceURI</code> restituisce lo spazio dei nomi XML del documento corrente.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval"><i>NSURI</i> = document.namespaceURI
-</pre>
-
-<h3 id="Parametri" name="Parametri">Parametri</h3>
-
-<ul>
- <li><code>NSURI</code> è una stringa contenente lo spazio dei nomi.</li>
-</ul>
-
-<h3 id="Note" name="Note">Note</h3>
-
-<p>Il DOM di per sè non supporta la validazione del namespace. Spetta all'applicazione DOM effettuare la necessaria validazione. Si noti inoltre che il prefisso del namespace, una volta associato a un nodo particolare, non può più cambiare.</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#Namespaces-Considerations">DOM Level 2 Core: namespaceURI</a></p>
-
-<p>{{ languages( { "fr": "fr/DOM/document.namespaceURI", "pl": "pl/DOM/document.namespaceURI" } ) }}</p>
diff --git a/files/it/web/api/document/stylesheets/index.html b/files/it/web/api/document/stylesheets/index.html
deleted file mode 100644
index 3aa006a94f..0000000000
--- a/files/it/web/api/document/stylesheets/index.html
+++ /dev/null
@@ -1,44 +0,0 @@
----
-title: document.styleSheets
-slug: Web/API/Document/styleSheets
-tags:
- - DOM
- - Gecko
- - Reference_del_DOM_di_Gecko
- - Tutte_le_categorie
-translation_of: Web/API/DocumentOrShadowRoot/styleSheets
-translation_of_original: Web/API/Document/styleSheets
----
-<p>{{APIRef("DOM")}}</p>
-
-<p>Restituisce una lista di oggetti <a href="it/DOM/stylesheet">stylesheet</a> per i fogli stile esplicitamente linkati o inclusi nel documento.</p>
-
-<h3 id="Propriet.C3.A0" name="Propriet.C3.A0">Proprietà</h3>
-
-<p><code>styleSheetList.length</code> - restituisce il numero di oggetti stylesheet contenuti nell'oggetto.</p>
-
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-
-<pre class="eval"><i>styleSheetList</i> =
-<i>document</i>.styleSheets
-</pre>
-
-<p>L'oggetto restituito è di tipo <a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets">StyleSheetList</a>.</p>
-
-<p>E' una collezione ordinata di oggetti <a href="it/DOM/stylesheet">stylesheet</a>. <code>
- <i>styleSheetList</i>
- .item(
-
- <i>indice</i>
- )</code> o semplicemente <code>
- <i>styleSheetList</i>
- {{ mediawiki.external('
-
- <i>indice</i>
- ') }}</code> restituisce un singolo oggetto stylesheet indicato dall'indice (<code>indice</code> comincia da 0).</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets">DOM Level 2 Style: styleSheets</a></p>
-
-<p>{{ languages( { "ja": "ja/DOM/document.styleSheets", "pl": "pl/DOM/document.styleSheets" } ) }}</p>