aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/mouseevent/shiftkey
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/mouseevent/shiftkey
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/mouseevent/shiftkey')
-rw-r--r--files/it/web/api/mouseevent/shiftkey/index.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/files/it/web/api/mouseevent/shiftkey/index.html b/files/it/web/api/mouseevent/shiftkey/index.html
deleted file mode 100644
index 3365619bf1..0000000000
--- a/files/it/web/api/mouseevent/shiftkey/index.html
+++ /dev/null
@@ -1,47 +0,0 @@
----
-title: event.shiftKey
-slug: Web/API/MouseEvent/shiftKey
-tags:
- - DOM
- - Gecko
- - Reference_del_DOM_di_Gecko
- - Tutte_le_categorie
-translation_of: Web/API/MouseEvent/shiftKey
-translation_of_original: Web/API/event.shiftKey
-original_slug: Web/API/Event/shiftKey
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Sommario" name="Sommario">Sommario</h3>
-<p>Indica se il tasto SHIFT รจ stato premuto durante l'evento.</p>
-<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
-<pre class="eval"><i>bool</i> = event.shiftKey
-</pre>
-<p><code>bool</code> restituisce <code>true</code> se il tasto SHIFT era premuto mentre l'evento si verificava, altrimenti <code>false</code>.</p>
-<h3 id="Esempio" name="Esempio">Esempio</h3>
-<pre>&lt;html&gt;
-&lt;head&gt;
-&lt;title&gt;esempio tasto shift&lt;/title&gt;
-
-&lt;script type="text/javascript"&gt;
-
-function mostraCarattere(e){
- alert(
- "Tasto premuto: " + String.fromCharCode(e.charCode) + "\n"
- + "Codice carattere: " + e.charCode + "\n"
- + "Tasto SHIFT premuto: " + e.shiftKey + "\n"
- + "Tasto ALT premuto: " + e.altKey + "\n"
- );
-}
-
-&lt;/script&gt;
-&lt;/head&gt;
-
-&lt;body onkeypress="mostraCarattere(event);"&gt;
-&lt;p&gt;Prova a premere un tasto tenendo premuto SHIFT e prova a premere un tasto senza premere SHIFT.&lt;br /&gt;
-Puoi anche provare a premere SHIFT+ALT.&lt;/p&gt;
-&lt;/body&gt;
-&lt;/html&gt;
-</pre>
-<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
-<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-shiftKey">shiftKey </a></p>
-<p>{{ languages( { "en": "en/DOM/event.shiftKey", "pl": "pl/DOM/event.shiftKey" } ) }}</p>