aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-14 11:07:46 +0900
committerGitHub <noreply@github.com>2021-09-14 11:07:46 +0900
commit03385cc9f4f157cec2e5fd05f35e6af646055908 (patch)
tree445fcb3a7d033d4ef35c4d4238b28b9630e3dc5b /files/ja/web/api/document
parentb8899e350326af3e53dfad89747761c1c13a3915 (diff)
downloadtranslated-content-03385cc9f4f157cec2e5fd05f35e6af646055908.tar.gz
translated-content-03385cc9f4f157cec2e5fd05f35e6af646055908.tar.bz2
translated-content-03385cc9f4f157cec2e5fd05f35e6af646055908.zip
Web/API以下の文書内のリンクURLを正規化 (#2360)
- /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/web/api/document')
-rw-r--r--files/ja/web/api/document/copy_event/index.html2
-rw-r--r--files/ja/web/api/document/designmode/index.html2
-rw-r--r--files/ja/web/api/document/evaluate/index.html8
-rw-r--r--files/ja/web/api/document/getelementsbyname/index.html2
-rw-r--r--files/ja/web/api/document/hasfocus/index.html2
-rw-r--r--files/ja/web/api/document/lastmodified/index.html2
-rw-r--r--files/ja/web/api/document/open/index.html2
-rw-r--r--files/ja/web/api/document/selectstart_event/index.html2
8 files changed, 11 insertions, 11 deletions
diff --git a/files/ja/web/api/document/copy_event/index.html b/files/ja/web/api/document/copy_event/index.html
index 83cde410c0..00c2a97df8 100644
--- a/files/ja/web/api/document/copy_event/index.html
+++ b/files/ja/web/api/document/copy_event/index.html
@@ -36,7 +36,7 @@ translation_of: Web/API/Document/copy_event
</tbody>
</table>
-<p>このイベントの本来の対象は、コピー操作の意図の対象である {{domxref("Element")}} です。このイベントを {{domxref("Document")}} インターフェイス上で待ち受けし、キャプチャやバブリングの局面で処理することができます。このイベントの局面について完全な詳細は、 <a href="/en-US/docs/Web/API/Element/copy_event">Element: copy イベント</a>を参照してください。</p>
+<p>このイベントの本来の対象は、コピー操作の意図の対象である {{domxref("Element")}} です。このイベントを {{domxref("Document")}} インターフェイス上で待ち受けし、キャプチャやバブリングの局面で処理することができます。このイベントの局面について完全な詳細は、 <a href="/ja/docs/Web/API/Element/copy_event">Element: copy イベント</a>を参照してください。</p>
<h2 id="Examples" name="Examples">例</h2>
diff --git a/files/ja/web/api/document/designmode/index.html b/files/ja/web/api/document/designmode/index.html
index ce879d87d5..c0a2da4cde 100644
--- a/files/ja/web/api/document/designmode/index.html
+++ b/files/ja/web/api/document/designmode/index.html
@@ -59,6 +59,6 @@ document.designMode = <em>value</em>;</pre>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
- <li><a href="/docs/Rich-Text_Editing_in_Mozilla">Mozilla におけるリッチテキスト編集</a></li>
+ <li><a href="/ja/docs/Rich-Text_Editing_in_Mozilla">Mozilla におけるリッチテキスト編集</a></li>
<li>{{domxref("HTMLElement.contentEditable")}}</li>
</ul>
diff --git a/files/ja/web/api/document/evaluate/index.html b/files/ja/web/api/document/evaluate/index.html
index 493d923a99..98eacb4ef8 100644
--- a/files/ja/web/api/document/evaluate/index.html
+++ b/files/ja/web/api/document/evaluate/index.html
@@ -5,7 +5,7 @@ translation_of: Web/API/Document/evaluate
---
<div>{{ ApiRef("DOM") }}</div>
-<div><a href="/en-US/docs/XPath" title="XPath">XPath</a> 式やその他与えられたパラメータに基づいて <code><a href="/en-US/docs/XPathResult" title="XPathResult">XPathResult</a></code> を返します。</div>
+<div><a href="/ja/docs/XPath" title="XPath">XPath</a> 式やその他与えられたパラメータに基づいて <code><a href="/ja/docs/XPathResult" title="XPathResult">XPathResult</a></code> を返します。</div>
<div> </div>
@@ -50,7 +50,7 @@ alert(alertText); // Alerts the text of all h2 elements
<p>Notice in the above <code>document.body</code> has been used as the context instead of <code>document</code> so the XPath starts from the body element. (In this example, the <code>"."</code> is important to indicate that the querying should start from the context node, document.body. If the "." was left out (leaving <code>//h2</code>) the query would start from the root node (<code>html</code>) which would be more wasteful.)</p>
-<p>See <a href="/en-US/docs/Introduction_to_using_XPath_in_JavaScript" title="Introduction to using XPath in JavaScript">Introduction to using XPath in JavaScript</a> for more information.</p>
+<p>See <a href="/ja/docs/Introduction_to_using_XPath_in_JavaScript" title="Introduction to using XPath in JavaScript">Introduction to using XPath in JavaScript</a> for more information.</p>
<h2 id="Notes" name="Notes">注釈</h2>
@@ -155,7 +155,7 @@ alert(alertText); // Alerts the text of all h2 elements
<h2 id="See_also" name="See_also">関連項目</h2>
<ul>
- <li><a href="/en-US/docs/DOM/document.createExpression" title="DOM/document.createExpression">DOM:document.createExpression</a></li>
- <li><a href="/en-US/docs/Code_snippets/XPath" title="Code_snippets/XPath">XPath Code Snippets</a></li>
+ <li><a href="/ja/docs/DOM/document.createExpression" title="DOM/document.createExpression">DOM:document.createExpression</a></li>
+ <li><a href="/ja/docs/Code_snippets/XPath" title="Code_snippets/XPath">XPath Code Snippets</a></li>
<li><a href="http://codepen.io/johan/full/ckFgn">Check for browser support</a></li>
</ul>
diff --git a/files/ja/web/api/document/getelementsbyname/index.html b/files/ja/web/api/document/getelementsbyname/index.html
index 61d75e85f5..d21b02a8ed 100644
--- a/files/ja/web/api/document/getelementsbyname/index.html
+++ b/files/ja/web/api/document/getelementsbyname/index.html
@@ -92,6 +92,6 @@ translation_of: Web/API/Document/getElementsByName
<ul>
<li>{{domxref("document.getElementById()")}} : 固有の <code>id</code> を持つ要素への参照を返す</li>
- <li>{{domxref("document.getElementsByTagName()")}} : 同じ<a href="/en-US/docs/Web/API/Element/tagName">タグ名</a>の要素への参照を返す</li>
+ <li>{{domxref("document.getElementsByTagName()")}} : 同じ<a href="/ja/docs/Web/API/Element/tagName">タグ名</a>の要素への参照を返す</li>
<li>{{domxref("document.querySelector()")}} : <code>'div.myclass'</code> のような CSS セレクターによって要素への参照をかえす</li>
</ul>
diff --git a/files/ja/web/api/document/hasfocus/index.html b/files/ja/web/api/document/hasfocus/index.html
index 2cbc9b8524..d228acbe5a 100644
--- a/files/ja/web/api/document/hasfocus/index.html
+++ b/files/ja/web/api/document/hasfocus/index.html
@@ -16,7 +16,7 @@ translation_of: Web/API/Document/hasFocus
<p><code><strong>hasFocus()</strong></code> は {{domxref("Document")}} インターフェイスのメソッドで、 {{jsxref("Boolean")}} の値を返し、文書または文書内の何れかの要素がフォーカスを持っているかどうかを示します。このメソッドは、文書内のアクティブな要素がフォーカスを持っているかどうかを特定するために使用することができます。</p>
<div class="note">
-<p>文書を見ている時、文書内でフォーカスを持つ要素は常に<a href="/en-US/docs/Web/API/DocumentOrShadowRoot/activeElement">アクティブ要素</a>ですが、アクティブ要素がフォーカスを持っているとは限りません。例えば、フォアグラウンドになっていないポップアップウィンドウ内のアクティブ要素はフォーカスを持ちません。</p>
+<p>文書を見ている時、文書内でフォーカスを持つ要素は常に<a href="/ja/docs/Web/API/DocumentOrShadowRoot/activeElement">アクティブ要素</a>ですが、アクティブ要素がフォーカスを持っているとは限りません。例えば、フォアグラウンドになっていないポップアップウィンドウ内のアクティブ要素はフォーカスを持ちません。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
diff --git a/files/ja/web/api/document/lastmodified/index.html b/files/ja/web/api/document/lastmodified/index.html
index a2f24d0270..682e0341ff 100644
--- a/files/ja/web/api/document/lastmodified/index.html
+++ b/files/ja/web/api/document/lastmodified/index.html
@@ -45,7 +45,7 @@ translation_of: Web/API/Document/lastModified
<h2 id="Notes" name="Notes">注</h2>
-<p><code>lastModified</code> は文字列なので、文書の更新日の比較には<em>簡単には</em>使用できないことに注意してください。こちらはいつページが変更されたかをアラートメッセージで表示する方法の例です (<a href="/en-US/docs/DOM/document.cookie">JavaScript cookies API</a> も参照)。</p>
+<p><code>lastModified</code> は文字列なので、文書の更新日の比較には<em>簡単には</em>使用できないことに注意してください。こちらはいつページが変更されたかをアラートメッセージで表示する方法の例です (<a href="/ja/docs/DOM/document.cookie">JavaScript cookies API</a> も参照)。</p>
<pre class="brush: js notranslate">if (Date.parse(document.lastModified) &gt; parseFloat(document.cookie.replace(/(?:(?:^|.*;)\s*last_modif\s*\=\s*([^;]*).*$)|^.*$/, "$1") || "0")) {
document.cookie = "last_modif=" + Date.now() + "; expires=Fri, 31 Dec 9999 23:59:59 GMT; path=" + location.pathname;
diff --git a/files/ja/web/api/document/open/index.html b/files/ja/web/api/document/open/index.html
index 2c2d46aaf8..a6d2629093 100644
--- a/files/ja/web/api/document/open/index.html
+++ b/files/ja/web/api/document/open/index.html
@@ -56,7 +56,7 @@ document.close();
<p>Gecko 1.9 以降、このメソッドは他のプロパティと同一オリジンポリシーが同じになるようになり、文書のオリジンを変更しようとした場合に動作しません。</p>
-<p>Gecko 1.9.2 以降、 <code>document.open()</code> は<a href="/docs/Security_check_basics">プリンシパル</a>をスタックからフェッチするのではなく、 URI を使用する文書のプリンシパルを使用します。その結果、 <a class="internal" href="/ja/wrappedJSObject"><code>wrappedJSObject</code></a> を使用しても、 {{domxref("document.write()")}} を{{Glossary("chrome", "クローム")}}からの信頼できない文書に呼び出すことはできません。考え方については<a href="/ja/Security_check_basics">セキュリティチェックの基本</a>を参照してください。</p>
+<p>Gecko 1.9.2 以降、 <code>document.open()</code> は<a href="/ja/docs/Security_check_basics">プリンシパル</a>をスタックからフェッチするのではなく、 URI を使用する文書のプリンシパルを使用します。その結果、 <a class="internal" href="/ja/wrappedJSObject"><code>wrappedJSObject</code></a> を使用しても、 {{domxref("document.write()")}} を{{Glossary("chrome", "クローム")}}からの信頼できない文書に呼び出すことはできません。考え方については<a href="/ja/Security_check_basics">セキュリティチェックの基本</a>を参照してください。</p>
<h2 id="Three-argument_document.open" name="Three-argument_document.open">引数3つの document.open()</h2>
diff --git a/files/ja/web/api/document/selectstart_event/index.html b/files/ja/web/api/document/selectstart_event/index.html
index 448225df42..70b7d59de9 100644
--- a/files/ja/web/api/document/selectstart_event/index.html
+++ b/files/ja/web/api/document/selectstart_event/index.html
@@ -6,7 +6,7 @@ translation_of: Web/API/Document/selectstart_event
<div>{{APIRef}}</div>
<div>
-<p><a href="/en-US/docs/Web/API/Selection">Selection API</a> の <code><strong>selectstart</strong></code> イベントは新しい選択範囲をユーザが指定した際に発火します。</p>
+<p><a href="/ja/docs/Web/API/Selection">Selection API</a> の <code><strong>selectstart</strong></code> イベントは新しい選択範囲をユーザが指定した際に発火します。</p>
<p>イベントがキャンセルされた場合、選択範囲は変更されません。</p>
</div>