aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-06-25 00:38:26 +0000
committerMDN <actions@users.noreply.github.com>2021-06-25 00:38:26 +0000
commitd43a795d4209d1632dd44e0803c61674149686bb (patch)
tree828ca4a5ce48417a0c988a57ba3dedc050957873 /files/ja/web/api
parentfa9d0b4ad49db970ba8707a4f6ab9ce17b5383b8 (diff)
downloadtranslated-content-d43a795d4209d1632dd44e0803c61674149686bb.tar.gz
translated-content-d43a795d4209d1632dd44e0803c61674149686bb.tar.bz2
translated-content-d43a795d4209d1632dd44e0803c61674149686bb.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web/api')
-rw-r--r--files/ja/web/api/navigator/registercontenthandler/index.html74
1 files changed, 0 insertions, 74 deletions
diff --git a/files/ja/web/api/navigator/registercontenthandler/index.html b/files/ja/web/api/navigator/registercontenthandler/index.html
deleted file mode 100644
index 8a220eff1a..0000000000
--- a/files/ja/web/api/navigator/registercontenthandler/index.html
+++ /dev/null
@@ -1,74 +0,0 @@
----
-title: Navigator.registerContentHandler()
-slug: Web/API/Navigator/registerContentHandler
-tags:
- - API
- - MIME
- - Method
- - Navigator
- - registerContentHandler
- - ウェブベースプロトコルハンドラー
- - 廃止
-translation_of: Web/API/Navigator/registerContentHandler
----
-<div>{{ ApiRef("HTML DOM") }}{{ Obsolete_header }}</div>
-
-<p><span class="seoSummary">ウェブサイトが自分自身を、特定の MIME タイプのコンテンツのハンドラーとして可能な限り登録します。</span></p>
-
-<p>{{Note("ウェブサイトは自分自身のコンテンツハンドラーのみを登録できます、。セキュリティ上の理由で、拡張機能やウェブサイトが他のサイトを対象とするコンテンツハンドラーを登録することはできません。")}}</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox">navigator.registerContentHandler(<em>mimeType</em>, <em>uri</em>, <em>title</em>);</pre>
-
-<ul>
- <li><code>mimeType</code> は、関連付けたい MIME タイプを表す文字列です。</li>
- <li><code>uri</code> は、関連づける URI を表す文字列です。</li>
- <li><code>title</code> は、ユーザ向けの関連付けの名称を表す文字列です。</li>
-</ul>
-
-<h2 id="Example" name="Example">例</h2>
-
-<pre class="brush:js;auto-links:false;">navigator.registerContentHandler(
- "application/vnd.mozilla.maybe.feed",
- "http://www.example.tld/?foo=%s",
- "My Feed Reader"
-);</pre>
-
-<h2 id="Notes" name="Notes">メモ</h2>
-
-<p><a href="/ja/docs/Firefox_2_for_developers" title="Firefox_2_for_developers">Firefox 2</a> 以降では、 MIME タイプのうち <code>application/vnd.mozilla.maybe.feed</code>, <code>application/atom+xml</code>, <code>application/rss+xml</code> のみに対応しています。これらの値は全て、同じ効果を持っています。また、関連付けは、全てのバージョンの Atom と RSS におけるフィードに対して適用されます。</p>
-
-<p>Firefox はこの機能が実装された唯一のブラウザーであり、標準には一致していません。この機能は HTML 標準から削除されており、使用しないでください。</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('HTML5.2', 'webappapis.html#dom-navigator-registercontenthandler', 'registerContentHandler()')}}</td>
- <td>{{Spec2('HTML5.2')}}</td>
- <td>この機能は HTML 5.2 に存在するが、 WHATWG HTML Living Standard からは削除済み。</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_Compatibility" name="Browser_Compatibility">ブラウザーの対応</h2>
-
-<p>{{Compat("api.Navigator.registerContentHandler")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li><a href="/ja/docs/Web-based_protocol_handlers" title="Web-based_protocol_handlers">ウェブベースのプロトコルハンドラー</a></li>
- <li>{{domxref("Navigator.registerProtocolHandler()")}}</li>
- <li><a href="/ja/docs/WebAPI/Web_Activities" title="/ja/docs/WebAPI/Web_Activities">Web activities</a>、特に view 及び open</li>
- <li><a href="/ja/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIWebContentHandlerRegistrar#registerContentHandler">XPCOM Interface Reference &gt; nsIWebContentHandlerRegistrar &gt; registerContentHandler</a> - この機能を XPCOM のスコープから使用する方法を紹介</li>
-</ul>