aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-30 12:46:27 +0900
committerGitHub <noreply@github.com>2021-07-30 12:46:27 +0900
commit83066369c9c1e7c1150174feca942b0a8afdee0d (patch)
tree2cbd0626c24c2f8e7c0f2cf44a33983c5471571c /files/ja/orphaned
parent006562a295054a38130684995d40171ab7d23624 (diff)
downloadtranslated-content-83066369c9c1e7c1150174feca942b0a8afdee0d.tar.gz
translated-content-83066369c9c1e7c1150174feca942b0a8afdee0d.tar.bz2
translated-content-83066369c9c1e7c1150174feca942b0a8afdee0d.zip
orphaned/Web/API/AudioContext/mozAudioChannelType を削除 (#1570)
英語版の API ドキュメントにないページであるため削除
Diffstat (limited to 'files/ja/orphaned')
-rw-r--r--files/ja/orphaned/web/api/audiocontext/mozaudiochanneltype/index.html96
1 files changed, 0 insertions, 96 deletions
diff --git a/files/ja/orphaned/web/api/audiocontext/mozaudiochanneltype/index.html b/files/ja/orphaned/web/api/audiocontext/mozaudiochanneltype/index.html
deleted file mode 100644
index 479d1d7512..0000000000
--- a/files/ja/orphaned/web/api/audiocontext/mozaudiochanneltype/index.html
+++ /dev/null
@@ -1,96 +0,0 @@
----
-title: AudioContext.mozAudioChannelType
-slug: orphaned/Web/API/AudioContext/mozAudioChannelType
-translation_of: Web/API/AudioContext/mozAudioChannelType
-original_slug: Web/API/AudioContext/mozAudioChannelType
----
-<p>{{APIRef("Web Audio API")}} {{Non-standard_header}}</p>
-
-<p>{{domxref("AudioContext")}}インターフェースの<code>mozAudioChannelType</code>読み取り専用プロパティは、Firefox OS デバイスで、オーディオコンテキスト要素で再生される音声を再生するオーディオチャンネルを設定するために使えます。</p>
-
-<p>これは<a href="/en-US/docs/Web/API/AudioChannels_API">AudioChannels API</a>に定義された非標準のプロパティです。詳細は<a href="https://developer.mozilla.org/en-US/docs/Web/API/AudioChannels_API/Using_the_AudioChannels_API">Using the AudioChannels API</a>を参照してください。</p>
-
-<h2 id="構文">構文</h2>
-
-<pre class="brush: js">var audioCtx = new AudioContext();
-var myAudioChannelType = audioCtx.mozAudioChannelType;
-</pre>
-
-<p><code>AudioContext</code>のオーディオチャンネルタイプを設定できるのは、次のコンストラクタを使う場合のみです。</p>
-
-<pre class="brush: js">var audioCtx = new AudioContext('ringer');</pre>
-
-<h3 id="値">値</h3>
-
-<p>{{domxref("DOMString")}}</p>
-
-<h2 id="例">例</h2>
-
-<p>TBD</p>
-
-<h2 id="仕様">仕様</h2>
-
-<p>現在はAudioChannels APIには公式の仕様はありません。実装、WebIDLなどの詳細は<a href="https://wiki.mozilla.org/WebAPI/AudioChannels">https://wiki.mozilla.org/WebAPI/AudioChannels</a>を参照してください。</p>
-
-<h2 id="ブラウザ互換性">ブラウザ互換性</h2>
-
-<div>{{CompatibilityTable}}</div>
-
-<div id="compat-desktop">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Chrome</th>
- <th>Firefox (Gecko)</th>
- <th>Internet Explorer</th>
- <th>Opera</th>
- <th>Safari (WebKit)</th>
- </tr>
- <tr>
- <td>General support</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<div id="compat-mobile">
-<table class="compat-table">
- <tbody>
- <tr>
- <th>Feature</th>
- <th>Android</th>
- <th>Chrome</th>
- <th>Firefox Mobile (Gecko)</th>
- <th>Firefox OS</th>
- <th>IE Phone</th>
- <th>Opera Mobile</th>
- <th>Safari Mobile</th>
- </tr>
- <tr>
- <td>General support</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>1.2</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- <td>{{CompatNo}}</td>
- </tr>
- </tbody>
-</table>
-</div>
-
-<h2 id="参考">参考</h2>
-
-<ul>
- <li><a href="/en-US/Apps/Build/App_permissions">App permissions for Firefox OS</a></li>
- <li><a href="/en-US/docs/Web/API/AudioChannels_API/Using_the_AudioChannels_API">Using the AudioChannels API</a></li>
- <li>{{domxref("Navigator.mozAudioChannelManager","navigator.mozAudioChannelManager")}}</li>
- <li>{{domxref("AudioContext")}}</li>
-</ul>