aboutsummaryrefslogtreecommitdiff
path: root/files/he/web/api/storage/clear
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/he/web/api/storage/clear
parentee3b1c87e3c8e72ca130943eed260ad642246581 (diff)
downloadtranslated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2
translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip
remove retired locales (#699)
Diffstat (limited to 'files/he/web/api/storage/clear')
-rw-r--r--files/he/web/api/storage/clear/index.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/files/he/web/api/storage/clear/index.html b/files/he/web/api/storage/clear/index.html
deleted file mode 100644
index f93b7cf4a4..0000000000
--- a/files/he/web/api/storage/clear/index.html
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Storage.clear()
-slug: Web/API/Storage/clear
-translation_of: Web/API/Storage/clear
----
-<p>{{APIRef("Web Storage API")}}</p>
-
-<p>פונקציית <strong><code>()clear</code></strong> מאפשרת לנקות את כל המפתחות מהאחסון המקומי.</p>
-
-<h2 id="תחביר">תחביר</h2>
-
-<pre class="brush: js"><em>storage</em>.clear();</pre>
-
-<h3 id="ערך_חוזר">ערך חוזר</h3>
-
-<p>undefined.</p>
-
-<h2 id="דוגמאות">דוגמאות</h2>
-
-<p><font><font>הפונקציה הבאה יוצרת שלושה פריטים באחסון המקומי, ולאחר מכן מוחקת אותם.</font></font></p>
-
-<pre class="brush: js">function populateStorage() {
- localStorage.setItem('bgcolor', 'red');
- localStorage.setItem('font', 'Helvetica');
- localStorage.setItem('image', 'miGato.png');
-
- localStorage.clear();
-}
-</pre>
-
-<h2 id="מפרט">מפרט</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('HTML WHATWG', 'webstorage.html#dom-storage-clear', 'Storage.clear')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td> </td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="תאימות_דפדפן">תאימות דפדפן</h2>
-
-
-
-<p>{{Compat("api.Storage.clear")}}</p>