diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
commit | a065e04d529da1d847b5062a12c46d916408bf32 (patch) | |
tree | fe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/ja/web/api/htmliframeelement | |
parent | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff) | |
download | translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2 translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip |
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/ja/web/api/htmliframeelement')
-rw-r--r-- | files/ja/web/api/htmliframeelement/getvisible/index.html | 33 | ||||
-rw-r--r-- | files/ja/web/api/htmliframeelement/stop/index.html | 32 |
2 files changed, 0 insertions, 65 deletions
diff --git a/files/ja/web/api/htmliframeelement/getvisible/index.html b/files/ja/web/api/htmliframeelement/getvisible/index.html deleted file mode 100644 index 6f91260fc9..0000000000 --- a/files/ja/web/api/htmliframeelement/getvisible/index.html +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: HTMLIFrameElement.getVisible -slug: Web/API/HTMLIFrameElement/getVisible -tags: - - B2G - - Browser - - Firefox OS - - Non Standard - - WebAPI -translation_of: Mozilla/Gecko/Chrome/API/Browser_API/getVisible ---- -<div> - {{non-standard_header}} {{B2GOnlyHeader2('privileged')}}</div> -<h2 id="Summary" name="Summary">概要</h2> -<p><code>getVisible</code> メソッドは、 {{HTMLElement("iframe")}} 要素の現在の可視状態の取得に用います。</p> -<h2 id="Syntax" name="Syntax">構文</h2> -<pre class="syntaxbox"><var>instanceOfDOMRequest</var> = <em>instanceOfHTMLIframeElement</em>.getVisible();</pre> -<h3 id="Return" name="Return">Return</h3> - -<p>リクエストの成功とエラーを処理するために {{domxref("DOMRequest")}} オブジェクトを返します。要求が成功した場合、リクエストの <code>result</code> はブラウザ {{HTMLElement("iframe")}} の可視状態を示す真偽値となります。</p> -<h2 id="Example" name="Example">例</h2> -<pre class="brush:js;highlight:[2,5]">var browser = document.querySelector("iframe[mozbrowser]"); -var request = browser.getVisible(); - -request.onsuccess = function () { - console.log("The visible state is: " + this.result ? "true" : "false"); -}</pre> -<h2 id="Specification" name="Specification">仕様</h2> -<p>どの仕様書にも含まれていません。</p> -<h2 id="See_also" name="See_also">関連情報</h2> -<ul> - <li><a href="/ja/docs/WebAPI/Browser">Browser API の利用</a></li> -</ul> diff --git a/files/ja/web/api/htmliframeelement/stop/index.html b/files/ja/web/api/htmliframeelement/stop/index.html deleted file mode 100644 index 882a544abb..0000000000 --- a/files/ja/web/api/htmliframeelement/stop/index.html +++ /dev/null @@ -1,32 +0,0 @@ ---- -title: HTMLIFrameElement.stop -slug: Web/API/HTMLIFrameElement/stop -tags: - - B2G - - Browser - - Firefox OS - - Non Standard - - WebAPI -translation_of: Mozilla/Gecko/Chrome/API/Browser_API/stop ---- -<div>{{non-standard_header}} {{B2GOnlyHeader2('privileged')}}</div> - - -<h2 id="Summary" name="Summary">概要</h2> - -<p><code>stop</code> メソッドは {{HTMLElement("iframe")}} のコンテンツの読み込みの停止に用います。</p> - - -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="syntaxbox"><em>instanceOfHTMLIframeElement</em>.stop();</pre> - - -<h2 id="Specification" name="Specification">仕様</h2> -<p>どの仕様書にも含まれていません。</p> - - -<h2 id="See_also" name="See_also">関連情報</h2> -<ul> - <li><a href="/ja/docs/WebAPI/Browser">Browser API の利用</a></li> -</ul> |