aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-07-08 00:34:19 +0000
committerMDN <actions@users.noreply.github.com>2021-07-08 00:34:19 +0000
commitff9ea0cf9f0ea6217deefa7ad0dba35bf7f6c45e (patch)
treed11054dc18b78736aa981b3102bfd731f86bcd43 /files/ja/web
parent874d81c43e8e5d7d498b452a8d82bd6879aa5716 (diff)
downloadtranslated-content-ff9ea0cf9f0ea6217deefa7ad0dba35bf7f6c45e.tar.gz
translated-content-ff9ea0cf9f0ea6217deefa7ad0dba35bf7f6c45e.tar.bz2
translated-content-ff9ea0cf9f0ea6217deefa7ad0dba35bf7f6c45e.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web')
-rw-r--r--files/ja/web/api/htmlorforeignelement/blur/index.html88
-rw-r--r--files/ja/web/api/htmlorforeignelement/focus/index.html160
-rw-r--r--files/ja/web/api/htmlorforeignelement/index.html58
3 files changed, 0 insertions, 306 deletions
diff --git a/files/ja/web/api/htmlorforeignelement/blur/index.html b/files/ja/web/api/htmlorforeignelement/blur/index.html
deleted file mode 100644
index 8a9cea1f8c..0000000000
--- a/files/ja/web/api/htmlorforeignelement/blur/index.html
+++ /dev/null
@@ -1,88 +0,0 @@
----
-title: HTMLElement.blur()
-slug: Web/API/HTMLOrForeignElement/blur
-tags:
- - API
- - HTML DOM
- - HTMLElement
- - Method
- - Reference
-translation_of: Web/API/HTMLOrForeignElement/blur
----
-<div>{{ APIRef("HTML DOM") }}</div>
-
-<p><span class="seoSummary"><code><strong>HTMLElement.blur()</strong></code> メソッドは、現在の要素からキーボードフォーカスを取り除きます。</span></p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><em>element</em>.blur();</pre>
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<h3 id="Remove_focus_from_a_text_input" name="Remove_focus_from_a_text_input">テキスト入力からフォーカスを取り除く</h3>
-
-<h4 id="HTML" name="HTML">HTML</h4>
-
-<pre class="brush: html">&lt;input type="text" id="myText" value="サンプルテキスト"&gt;
-&lt;br&gt;&lt;br&gt;
-&lt;button type="button" onclick="focusInput()"&gt;クリックするとフォーカスを得ます&lt;/button&gt;
-&lt;button type="button" onclick="blurInput()"&gt;クリックするとフォーカスを失います&lt;/button&gt;</pre>
-
-<h4 id="JavaScript" name="JavaScript">JavaScript</h4>
-
-<pre class="brush: js">function focusInput() {
- document.getElementById('myText').focus();
-}
-function blurInput() {
- document.getElementById('myText').blur();
-}</pre>
-
-<h4 id="Result" name="Result">結果</h4>
-
-<p>{{ EmbedLiveSample('Remove_focus_from_a_text_input') }}</p>
-
-<h2 id="Specification" name="Specification">仕様</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('HTML WHATWG', 'editing.html#dom-blur', 'blur')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5.1', 'editing.html#blur()-0', 'blur')}}</td>
- <td>{{Spec2('HTML5.1')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5 W3C', 'editing.html#dom-blur', 'blur')}}</td>
- <td>{{Spec2('HTML5 W3C')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('DOM2 HTML', 'html.html#ID-28216144', 'blur')}}</td>
- <td>{{Spec2('DOM2 HTML')}}</td>
- <td></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-
-
-<p>{{Compat("api.HTMLElement.blur")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>DOM メソッドの {{domxref("HTMLElement.focus()")}}</li>
-</ul>
diff --git a/files/ja/web/api/htmlorforeignelement/focus/index.html b/files/ja/web/api/htmlorforeignelement/focus/index.html
deleted file mode 100644
index 2680fd8658..0000000000
--- a/files/ja/web/api/htmlorforeignelement/focus/index.html
+++ /dev/null
@@ -1,160 +0,0 @@
----
-title: HTMLElement.focus()
-slug: Web/API/HTMLOrForeignElement/focus
-tags:
- - API
- - Focus
- - HTML DOM
- - HTMLElement
- - Method
- - Reference
- - Scroll
- - View
- - activate
-translation_of: Web/API/HTMLOrForeignElement/focus
----
-<div>{{ APIRef("HTML DOM") }}</div>
-
-<p><span class="seoSummary"><strong><code>HTMLElement.focus()</code></strong> メソッドは、指定された要素にフォーカスを設定できる場合、フォーカスを設定します。 フォーカスされた要素は、デフォルトでキーボードや同様のイベントを受け取る要素です。</span></p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><em>element</em>.focus(<em>options</em>); // Object parameter</pre>
-
-<h3 id="Parameters" name="Parameters">パラメーター</h3>
-
-<dl>
- <dt><code>options</code> {{optional_inline}}</dt>
- <dd>フォーカスプロセスの側面を制御するオプションを提供するオプションのオブジェクト。 このオブジェクトには、次のプロパティが含まれる場合があります。</dd>
- <dd>
- <dl>
- <dt><code>preventScroll</code> {{optional_inline}}</dt>
- <dd>ブラウザーがドキュメントをスクロールして、新しくフォーカスされた要素を表示するかどうかを示す <code>Boolean</code> の値。 <code>preventScroll</code> の値が <code>false</code>(デフォルト)の場合、ブラウザーは要素をフォーカスした後、その要素をスクロールして表示します。 <code>preventScroll</code> が <code>true</code> に設定されている場合、スクロールしません。</dd>
- </dl>
- </dd>
-</dl>
-
-<h2 id="Examples" name="Examples">例</h2>
-
-<h3 id="Focus_on_a_text_field" name="Focus_on_a_text_field">テキストフィールドにフォーカスする</h3>
-
-<h4 id="JavaScript" name="JavaScript">JavaScript</h4>
-
-<pre class="brush: js">focusMethod = function getFocus() {
- document.getElementById("myTextField").focus();
-}</pre>
-
-<h4 id="HTML" name="HTML">HTML</h4>
-
-<pre class="brush: html">&lt;input type="text" id="myTextField" value="テキストフィールド"&gt;
-&lt;p&gt;&lt;/p&gt;
-&lt;button type="button" onclick="focusMethod()"&gt;クリックしてテキストフィールドにフォーカスしてください!&lt;/button&gt;
-</pre>
-
-<h4 id="Result" name="Result">結果</h4>
-
-<p>{{ EmbedLiveSample('Focus_on_a_text_field') }}</p>
-
-<h3 id="Focus_on_a_button" name="Focus_on_a_button">ボタンにフォーカスする</h3>
-
-<h4 id="JavaScript_2" name="JavaScript_2">JavaScript</h4>
-
-<pre class="brush: js">focusMethod = function getFocus() {
- document.getElementById("myButton").focus();
-}
-</pre>
-
-<h4 id="HTML_2" name="HTML_2">HTML</h4>
-
-<pre class="brush: html">&lt;button type="button" id="myButton"&gt;クリックしてください!&lt;/button&gt;
-&lt;p&gt;&lt;/p&gt;
-&lt;button type="button" onclick="focusMethod()"&gt;クリックしてボタンにフォーカスしてください!&lt;/button&gt;
-</pre>
-
-<h4 id="Result_2" name="Result_2">結果</h4>
-
-<p>{{ EmbedLiveSample('Focus_on_a_button') }}</p>
-
-<h3 id="Focus_prevent_scroll" name="Focus_prevent_scroll">focusOption でフォーカスする</h3>
-
-<h4 id="JavaScript_3" name="JavaScript_3">JavaScript</h4>
-
-<pre class="brush: js">focusScrollMethod = function getFocus() {
- document.getElementById("myButton").focus({preventScroll:false});
-}
-focusNoScrollMethod = function getFocusWithoutScrolling() {
- document.getElementById("myButton").focus({preventScroll:true});
-}
-
-</pre>
-
-<h4 id="HTML_3" name="HTML_3">HTML</h4>
-
-<pre class="brush: html">&lt;button type="button" onclick="focusScrollMethod()"&gt;クリックしてボタンにフォーカスしてください!&lt;/button&gt;
-&lt;button type="button" onclick="focusNoScrollMethod()"&gt;クリックしてスクロールせずにボタンにフォーカスしてください!&lt;/button&gt;
-
-&lt;div id="container" style="height: 1000px; width: 1000px;"&gt;
-&lt;button type="button" id="myButton" style="margin-top: 500px;"&gt;クリックしてください!&lt;/button&gt;
-&lt;/div&gt;
-
-</pre>
-
-<h4 id="Result_3" name="Result_3">結果</h4>
-
-<p>{{ EmbedLiveSample('Focus_prevent_scroll') }}</p>
-
-<h2 id="Specification" name="Specification">仕様</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('HTML WHATWG', 'editing.html#dom-focus', 'focus')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5.1', 'editing.html#focus()-0', 'focus')}}</td>
- <td>{{Spec2('HTML5.1')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5 W3C', 'editing.html#dom-focus', 'focus')}}</td>
- <td>{{Spec2('HTML5 W3C')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('DOM2 HTML', 'html.html#ID-32130014', 'focus')}}</td>
- <td>{{Spec2('DOM2 HTML')}}</td>
- <td></td>
- </tr>
- <tr>
- <td>{{SpecName('DOM1', 'level-one-html.html#method-focus', 'focus')}}</td>
- <td>{{Spec2('DOM1')}}</td>
- <td></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Notes" name="Notes">ノート</h2>
-
-<p><code>mousedown</code> イベントハンドラから <code>HTMLElement.focus()</code> を呼び出す場合は、<code>event.preventDefault()</code> を呼び出して、フォーカスがその <code>HTMLElement</code> から離れないようにする必要があります。</p>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-
-
-<p>{{Compat("api.HTMLElement.focus")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>要素からフォーカスを取り除く DOM メソッド {{domxref("HTMLElement.blur()")}}。</li>
- <li>現在フォーカスされている要素がどれであるかを知るための {{ domxref("document.activeElement") }}。</li>
-</ul>
diff --git a/files/ja/web/api/htmlorforeignelement/index.html b/files/ja/web/api/htmlorforeignelement/index.html
deleted file mode 100644
index 41dc389ca7..0000000000
--- a/files/ja/web/api/htmlorforeignelement/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: HTMLOrForeignElement
-slug: Web/API/HTMLOrForeignElement
-tags:
- - API
- - HTML
- - HTMLElement
- - HTMLOrForeignElement
- - Interface
- - MathML
- - MathMLElement
- - Mixin
- - Reference
- - SVG
- - SVGElement
- - ミックスイン
-translation_of: Web/API/HTMLOrForeignElement
----
-<div>{{APIRef("HTML DOM")}}{{Draft}}</div>
-
-<p><span class="seoSummary"><strong><code>HTMLOrForeignElement</code></strong> ミックスインは、 {{DOMxRef("HTMLElement")}}, {{DOMxRef("SVGElement")}}, {{DOMxRef("MathMLElement")}} の各インターフェイスで共通のいくつかの機能を説明します。</span>これらのインターフェイスは、もちろん、以下の列挙したものに加えたものに加えてもっと機能があります。</p>
-
-<div class="blockIndicator note">
-<p><strong>メモ</strong>: <code>HTMLOrForeignElement</code> はミックスインであり、インターフェイスではありません。実際に <code>HTMLOrForeignElement</code> 型のオブジェクトを生成することはできません。</p>
-</div>
-
-<div>{{InterfaceOverview("HTML DOM")}}</div>
-
-<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("HTML WHATWG", "dom.html#htmlorsvgelement", '<code>HTMLOrForeignElement</code>')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.HTMLOrForeignElement")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{DOMxRef("HTMLElement")}}</li>
- <li>{{DOMxRef("SVGElement")}}</li>
- <li>{{DOMxRef("MathMLElement")}}</li>
-</ul>