aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/document/images
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/images
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/images')
-rw-r--r--files/it/web/api/document/images/index.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/files/it/web/api/document/images/index.html b/files/it/web/api/document/images/index.html
deleted file mode 100644
index abe27b2a11..0000000000
--- a/files/it/web/api/document/images/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Document.images
-slug: Web/API/Document/images
-translation_of: Web/API/Document/images
----
-<div>{{APIRef("DOM")}}</div>
-
-<p><code>document.images</code> restituisce una collezione delle <a href="/en-US/docs/DOM/Image" title="DOM/Image">immagini</a> nel documento HTML corrente.</p>
-
-<h2 id="Syntax" name="Syntax">Sintassi</h2>
-
-<pre class="syntaxbox"><em>var htmlCollection</em> = document.images;</pre>
-
-<h2 id="Example" name="Example">Esempio</h2>
-
-<pre class="brush:js">var ilist = document.images;
-
-for(var i = 0; i &lt; ilist.length; i++) {
- if(ilist[i].src == "banner.gif") {
- // found the banner
- }
-}</pre>
-
-<h2 id="Notes" name="Notes">Note</h2>
-
-<p><code>document.images.length</code> – proprietà che restituisce il numero di immagini della pagina.</p>
-
-<p><code>document.images</code> è parte del DOM HTML, e funziona solo per documenti HTML.</p>
-
-<h2 id="Specifications" name="Specifications">Specifiche tecniche</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specifiche tecniche</th>
- <th scope="col">Stato</th>
- <th scope="col">Commento</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#dom-document-images', 'Document.images')}}</td>
- <td>{{ Spec2('HTML WHATWG') }}</td>
- <td> </td>
- </tr>
- <tr>
- <td>{{SpecName('DOM2 HTML', 'html.html#ID-90379117', 'Document.images')}}</td>
- <td>{{ Spec2('DOM2 Events') }}</td>
- <td>Initial definition.</td>
- </tr>
- </tbody>
-</table>