aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/height/index.html
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/document/height/index.html
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/document/height/index.html')
-rw-r--r--files/it/web/api/document/height/index.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/files/it/web/api/document/height/index.html b/files/it/web/api/document/height/index.html
deleted file mode 100644
index ee517b6c39..0000000000
--- a/files/it/web/api/document/height/index.html
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: document.height
-slug: Web/API/Document/height
-translation_of: Web/API/Document/height
----
-<div>{{APIRef("DOM")}}</div>
-
-<p>Restituisce l'altezza in pixel dell'elemento body del documento corrente.</p>
-
-<h3 id="Syntax" name="Syntax">Syntax</h3>
-
-<pre class="eval"><i>height_value</i> = document.height
-</pre>
-
-<h3 id="Parametri" name="Parametri">Parametri</h3>
-
-<ul>
- <li><code>height_value</code> è il numero di pixel</li>
-</ul>
-
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-
-<pre class="eval">// visualizza l'altezza del documento
-alert(document.height);
-</pre>
-
-<h3 id="Note" name="Note">Note</h3>
-
-<p>Si veda <code><a href="it/DOM/document.width">document.width</a></code>.</p>
-
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-
-<p>DOM Level 0. Non è parte di uno standard.</p>
-
-<p>{{ languages( { "pl": "pl/DOM/document.height" } ) }}</p>