aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmliframeelement
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
commita065e04d529da1d847b5062a12c46d916408bf32 (patch)
treefe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/ja/web/api/htmliframeelement
parent218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff)
downloadtranslated-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.html33
-rw-r--r--files/ja/web/api/htmliframeelement/stop/index.html32
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>