aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/name
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/window/name
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/window/name')
-rw-r--r--files/it/web/api/window/name/index.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/files/it/web/api/window/name/index.html b/files/it/web/api/window/name/index.html
deleted file mode 100644
index 8127d67285..0000000000
--- a/files/it/web/api/window/name/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
----
-title: Window.name
-slug: Web/API/Window/name
-translation_of: Web/API/Window/name
----
-<p>{{APIRef}}<br>
- Restituisce o imposta il nome della finestra.</p>
-
-<h2 id="Sintassi" name="Sintassi">Sintassi</h2>
-
-<pre class="eval"><i>stringa</i> = window.name
- window.name =
-<i>stringa</i>
-</pre>
-
-<h2 id="Esempio" name="Esempio">Esempio</h2>
-
-<pre class="eval">window.name = "vista1";
-</pre>
-
-<h2 id="Note" name="Note">Note</h2>
-
-<p>Il nome della finestra viene utilizzato soprattutto per impostare i target dei link e dei form. In realtà una finestra non deve necessariamente avere un nome.</p>