aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/window/find/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/window/find/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/window/find/index.html')
-rw-r--r--files/it/web/api/window/find/index.html33
1 files changed, 0 insertions, 33 deletions
diff --git a/files/it/web/api/window/find/index.html b/files/it/web/api/window/find/index.html
deleted file mode 100644
index 77a6a49092..0000000000
--- a/files/it/web/api/window/find/index.html
+++ /dev/null
@@ -1,33 +0,0 @@
----
-title: window.find
-slug: Web/API/Window/find
-tags:
- - DOM
- - DOM0
- - Gecko
- - Gecko DOM Reference
-translation_of: Web/API/Window/find
-original_slug: window.find
----
-<p>{{ ApiRef() }}</p>
-<h3 id="Summary" name="Summary">Sommario</h3>
-<p>Trova una stringa in una finestra.</p>
-<h3 id="Syntax" name="Syntax">Sintassi</h3>
-<pre class="eval"><em>window</em>.find(<em>aString</em>, <em>aCaseSensitive</em>, <em>aBackwards</em>, <em>aWrapAround</em>,
- <em>aWholeWord</em>, <em>aSearchInFrames</em>, <em>aShowDialog</em>);
-</pre>
-<ul>
- <li>aString: La stringa di testo da cercare.</li>
- <li>aCaseSensitive: Booleano. Se true, imposta la ricerca a case-sensitive.</li>
- <li>aBackwards: Booleano. Se true, imposta la ricerca al contrario.</li>
- <li>aWrapAround: Booleano. If true, specifies a wrap around search.</li>
- <li>aWholeWord: Boolean. Se true, imposta la ricerca solo su parole intere.</li>
- <li>aSearchInFrames: Booleano. Se true, attiva la ricerca nei frames.</li>
- <li>aShowDialog: Boolean. Se true, mostra una finestra di dialogo per la ricerca.</li>
-</ul>
-<h3 id="Returns" name="Returns">Returns</h3>
-<p>true if the string is found; otherwise, false.</p>
-<h3 id="Example" name="Example">Esempio</h3>
-<h3 id="Notes" name="Notes">Note</h3>
-<h3 id="Specification" name="Specification">Specifiche</h3>
-<p>{{ DOM0() }} This was added by with {{ Bug(9550) }}.</p>