aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2021-08-08 17:28:33 +0200
committerGitHub <noreply@github.com>2021-08-09 00:28:33 +0900
commit376fc21942c8059055f97804e4f47617821c1f0f (patch)
tree8bb777327b9530dbbb01ac51b8fb2aab4b6c4a6c /files/ja/web
parent42b4c570f00d300df6187b9c727319c44f742a40 (diff)
downloadtranslated-content-376fc21942c8059055f97804e4f47617821c1f0f.tar.gz
translated-content-376fc21942c8059055f97804e4f47617821c1f0f.tar.bz2
translated-content-376fc21942c8059055f97804e4f47617821c1f0f.zip
Fixes #1634 - remove old compat site for Japanese (#1900)
* Fixes #1634 - remove old compat site mentions for Japanese - part 1 * Fixes #1634 - remove old compat site mentions for Japanese - part 2 * Update index.html Co-authored-by: Masahiro FUJIMOTO <mfujimot@gmail.com>
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/api/document/keydown_event/index.html2
-rw-r--r--files/ja/web/api/document/keyup_event/index.html2
-rw-r--r--files/ja/web/api/navigator/buildid/index.html6
-rw-r--r--files/ja/web/api/worker/index.html2
-rw-r--r--files/ja/web/security/secure_contexts/features_restricted_to_secure_contexts/index.html8
5 files changed, 7 insertions, 13 deletions
diff --git a/files/ja/web/api/document/keydown_event/index.html b/files/ja/web/api/document/keydown_event/index.html
index 243aedc1b1..4a5da11168 100644
--- a/files/ja/web/api/document/keydown_event/index.html
+++ b/files/ja/web/api/document/keydown_event/index.html
@@ -40,7 +40,7 @@ translation_of: Web/API/Document/keydown_event
<p><code>keydown</code> および {{domxref("Document/keyup_event", "keyup")}} イベントが、どのキーが押されたのかを示すコードを提供するのに対し、 {{domxref("Document/keypress_event", "keypress")}} はどの<em>文字</em>が入力されたかを示します。例えば、小文字の "a" は <code>keydown</code> および <code>keyup</code> では65になるのに対し、 <code>keypress</code> では97になります。大文字の "A" はどのイベントでも65と報告されます。</p>
-<p>Firefox 65 から、 <code>keydown</code> および {{domxref("Document/keyup_event", "keyup")}} イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}}、またもっと有益な詳細は <a href="https://www.fxsitecompat.com/en-CA/docs/2018/keydown-and-keyup-events-are-now-fired-during-ime-composition/">keydown and keyup events are now fired during IME composition</a> を参照)。 IME 入力中のすべての <code>keydown</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>
+<p>Firefox 65 から、 <code>keydown</code> および {{domxref("Document/keyup_event", "keyup")}} イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}})。 IME 入力中のすべての <code>keydown</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>
<pre class="brush: js">eventTarget.addEventListener("keydown", event =&gt; {
if (event.isComposing || event.keyCode === 229) {
diff --git a/files/ja/web/api/document/keyup_event/index.html b/files/ja/web/api/document/keyup_event/index.html
index d2905b72d1..58752edd11 100644
--- a/files/ja/web/api/document/keyup_event/index.html
+++ b/files/ja/web/api/document/keyup_event/index.html
@@ -42,7 +42,7 @@ translation_of: Web/API/Document/keyup_event
<p><strong>注:</strong> 入力値の変更に反応する方法を探しているのであれば、 <a href="/ja/docs/Web/API/HTMLElement/input_event"><code>input</code> イベント</a>を使用してください。 <code>keyup</code> では、テキスト入力のコンテキストニューからテキストを貼り付けた場合など、一部の変更が検出されません。</p>
</div>
-<p>Firefox 65 から、 {{domxref("Document/keydown_event", "keydown")}} および <code>keyup</code> イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}}、またもっと有益な詳細は <a href="https://www.fxsitecompat.com/en-CA/docs/2018/keydown-and-keyup-events-are-now-fired-during-ime-composition/">keydown and keyup events are now fired during IME composition</a> を参照)。 IME 入力中のすべての <code>keyup</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>
+<p>Firefox 65 から、 {{domxref("Document/keydown_event", "keydown")}} および <code>keyup</code> イベントは IME 入力中でも発生するようになり、 CJKT のユーザーのブラウザー間の互換性が向上しました ({{bug(354358)}})。 IME 入力中のすべての <code>keyup</code> イベントを無視するには、次のようにします (229 は IME によって処理されたイベントに関連する <code>keyCode</code> の特殊な値のセットです)。</p>
<pre class="brush: js notranslate">eventTarget.addEventListener("keyup", event =&gt; {
if (event.isComposing || event.keyCode === 229) {
diff --git a/files/ja/web/api/navigator/buildid/index.html b/files/ja/web/api/navigator/buildid/index.html
index ea60eb0af3..7bc5dd48d1 100644
--- a/files/ja/web/api/navigator/buildid/index.html
+++ b/files/ja/web/api/navigator/buildid/index.html
@@ -34,9 +34,3 @@ translation_of: Web/API/Navigator/buildID
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<p>{{Compat("api.Navigator.buildID")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li><a href="https://www.fxsitecompat.com/en-CA/docs/2018/navigator-buildid-now-returns-a-fixed-timestamp/">navigator.buildID now returns a fixed timestamp</a></li>
-</ul>
diff --git a/files/ja/web/api/worker/index.html b/files/ja/web/api/worker/index.html
index 61367031ad..db0a319578 100644
--- a/files/ja/web/api/worker/index.html
+++ b/files/ja/web/api/worker/index.html
@@ -98,7 +98,7 @@ first.onchange = function() {
<h3 id="Cross-origin_worker_error_behaviour">オリジンをまたいだワーカーのエラーの動作</h3>
-<p>古いバージョンのブラウザーでオリジンをまたいでワーカーのスクリプトを読み込もうとすると、 <code>SecurityError</code> が発生していました。最近は、 {{event("error")}} イベントが発行されるようになりました。この処理方法について詳しくは <a href="https://www.fxsitecompat.com/docs/2016/loading-cross-origin-worker-now-fires-error-event-instead-of-throwing-worker-in-sandboxed-iframe-no-longer-allowed/">オリジンをまたいだワーカーの読み込みが、例外を発生させるのではなく error イベントを発生されるようになりました。サンドボックス化された iframe が許可されなくなりました</a> をご覧ください。</p>
+<p>古いバージョンのブラウザーでオリジンをまたいでワーカーのスクリプトを読み込もうとすると、 <code>SecurityError</code> が発生していました。最近は、 {{event("error")}} イベントが発行されるようになりました。</p>
<h2 id="See_also">関連情報</h2>
diff --git a/files/ja/web/security/secure_contexts/features_restricted_to_secure_contexts/index.html b/files/ja/web/security/secure_contexts/features_restricted_to_secure_contexts/index.html
index 8eb04d2a59..769f1bea1c 100644
--- a/files/ja/web/security/secure_contexts/features_restricted_to_secure_contexts/index.html
+++ b/files/ja/web/security/secure_contexts/features_restricted_to_secure_contexts/index.html
@@ -157,21 +157,21 @@ translation_of: Web/Security/Secure_Contexts/features_restricted_to_secure_conte
<td><a href="https://bugs.chromium.org/p/chromium/issues/detail?id=588931#c19">Chrome 70 で安全なコンテキストに限定することを計画中</a></td>
<td><a href="https://twitter.com/patrickkettner/status/961999450016239616">2018年2月に非推奨化の検討が開始</a></td>
<td><a href="https://twitter.com/johnwilander/status/959423900470800384">非推奨化に対する一般の関心</a> {{webkitbug(182442)}}</td>
- <td><a href="https://www.fxsitecompat.com/en-CA/docs/2018/application-cache-can-no-longer-be-used-on-insecure-sites/">Firefox 62 で安全なコンテキストに限定</a></td>
+ <td>Firefox 62 で安全なコンテキストに限定</td>
</tr>
<tr>
<td>{{domxref("Geolocation")}}</td>
<td><a href="https://developers.google.com/web/updates/2016/04/geolocation-on-secure-contexts-only">50で安全なコンテキストに限定</a></td>
<td></td>
<td>10で安全なコンテキストに限定</td>
- <td><a href="https://www.fxsitecompat.com/en-CA/docs/2017/use-of-geolocation-api-is-now-limited-to-secure-sites/">55で安全なコンテキストに限定</a></td>
+ <td>55で安全なコンテキストに限定</td>
</tr>
<tr>
<td><a href="/ja/docs/Web/API/Detecting_device_orientation">Device Orientaion / Device Motion</a></td>
<td>非推奨の警告</td>
<td></td>
<td></td>
- <td><a href="https://www.fxsitecompat.com/en-CA/docs/2018/various-device-sensor-apis-are-now-deprecated/">60から非推奨の警告</a>。なお、これは安全なコンテキストでも同様に適用されます。</td>
+ <td>60から非推奨の警告。なお、これは安全なコンテキストでも同様に適用されます。</td>
</tr>
<tr>
<td><a href="/ja/docs/Web/API/Encrypted_Media_Extensions_API">Encrypted Media Extensions</a></td>
@@ -220,7 +220,7 @@ translation_of: Web/Security/Secure_Contexts/features_restricted_to_secure_conte
<td></td>
<td></td>
<td></td>
- <td><a href="https://www.fxsitecompat.com/en-CA/docs/2018/navigator-registerprotocolhandler-can-no-longer-be-used-on-insecure-sites/">Firefox 62 で安全なコンテキストに限定</a>。</td>
+ <td>Firefox 62 で安全なコンテキストに限定。</td>
</tr>
</tbody>
</table>