aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned/web/api/navigatorstorage/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/orphaned/web/api/navigatorstorage/index.html')
-rw-r--r--files/ja/orphaned/web/api/navigatorstorage/index.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/files/ja/orphaned/web/api/navigatorstorage/index.html b/files/ja/orphaned/web/api/navigatorstorage/index.html
new file mode 100644
index 0000000000..5390a4b485
--- /dev/null
+++ b/files/ja/orphaned/web/api/navigatorstorage/index.html
@@ -0,0 +1,69 @@
+---
+title: NavigatorStorage
+slug: orphaned/Web/API/NavigatorStorage
+tags:
+ - API
+ - Interface
+ - Mixin
+ - Navigator
+ - NavigatorStorage
+ - Reference
+ - Secure context
+ - Storage
+ - Storage Standard
+ - WorkerNavigator
+translation_of: Web/API/NavigatorStorage
+original_slug: Web/API/NavigatorStorage
+---
+<p>{{securecontext_header}}{{APIRef("Storage")}}</p>
+
+<p><span class="seoSummary"><strong><code>NavigatorStorage</code></strong> {{Glossary("mixin","ミックスイン")}}は、{{domxref("Navigator")}} および {{domxref("WorkerNavigator")}} インターフェース に {{domxref("Navigator.storage")}} プロパティを追加します。 これにより、データストアの永続性の制御と情報の取得に使用する {{domxref("StorageManager")}} シングルトンへのアクセスが提供されます。</span></p>
+
+<p>{{AvailableInWorkers}}</p>
+
+<p>{{Glossary("Cookie","クッキー")}}、Web Storage API({{domxref("Window.localStorage")}} および {{domxref("Window.sessionStorage")}})、<a href="/ja/docs/Web/API/IndexedDB_API">IndexedDB</a> など、ウェブコンテンツがユーザーのコンピューターにデータを保存する方法を提供する API は数多くあります。 ストレージ標準は、それらすべての API とストレージテクノロジーを実装するための共通基盤として機能するように設計されているため、共通のメソッドとプロパティを使用してそれらの制約と構成を理解および制御できます。</p>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<dl>
+ <dt>{{domxref("NavigatorStorage.storage", "storage")}} {{readonlyinline}}{{securecontext_inline}}</dt>
+ <dd>Storage Manager へのアクセスに使用する{{domxref("StorageManager")}} シングルトンオブジェクトを返します。 返されたオブジェクトを通じて、データストアの永続性を制御したり、サイトやアプリがデータを格納するために必要なスペースの量を見積もることができます。</dd>
+</dl>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<p><em><code>NavigatorStorage</code> ミックスインにはメソッドがありません。</em></p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('Storage')}}</td>
+ <td>{{Spec2('Storage')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.NavigatorStorage")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{domxref("Navigator")}}</li>
+ <li>{{domxref("navigator.storage")}}</li>
+ <li>{{domxref("WorkerNavigator")}}</li>
+ <li>{{domxref("StorageManager")}}</li>
+</ul>