aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-08-15 00:41:16 +0900
committerGitHub <noreply@github.com>2021-08-15 00:41:16 +0900
commit209f9a4970fdc419967c145b82939dbfd9949b70 (patch)
tree2bb02c323c8d7ff2dbd30c12f05015302440e088 /files/ja/orphaned
parent28489e052c3c0c112f42614a01e439e0d570482f (diff)
downloadtranslated-content-209f9a4970fdc419967c145b82939dbfd9949b70.tar.gz
translated-content-209f9a4970fdc419967c145b82939dbfd9949b70.tar.bz2
translated-content-209f9a4970fdc419967c145b82939dbfd9949b70.zip
orphaned/Web/API/Element/currentStyle を削除 (#1952)
- 英語版で削除されているため
Diffstat (limited to 'files/ja/orphaned')
-rw-r--r--files/ja/orphaned/web/api/element/currentstyle/index.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/files/ja/orphaned/web/api/element/currentstyle/index.html b/files/ja/orphaned/web/api/element/currentstyle/index.html
deleted file mode 100644
index 5f1cfa645e..0000000000
--- a/files/ja/orphaned/web/api/element/currentstyle/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: Element.currentStyle
-slug: orphaned/Web/API/Element/currentStyle
-tags:
- - API
- - NeedsExample
- - Non-standard
- - Property
-translation_of: Web/API/Element/currentStyle
-original_slug: Web/API/Element/currentStyle
----
-<p>{{Non-standard_header}}</p>
-
-<p class="summary"><span class="seoSummary"><strong><code>Element.currentStyle</code></strong> は独自プロパティで、標準化されている {{DOMxRef("window.getComputedStyle()")}} メソッドに似ているものです。</span>古いバージョンの Microsoft Internet Explorer で使用できます。しかし、 <code>window.getComputedStyle()</code> がピクセル数で値を返すのに対し、これは CSS で設定された単位で返します。</p>
-
-<h2 id="Polyfill">ポリフィル</h2>
-
-<div class="note">
-<p>このポリフィルは値をピクセル数で返しますが、値を読むたびに {{domxref("window.getComputedStyle()")}} を呼び出さなければならないため、かなり遅くなると思われます。</p>
-</div>
-
-<pre class="brush: js">/* すべての著作権をパブリックドメインに寄贈します。
- * http://creativecommons.org/publicdomain/zero/1.0/ */
-
-if (!("currentStyle" in Element.prototype)) {
-  Object.defineProperty(Element.prototype, "currentStyle", {
-    get: function() {
-      return window.getComputedStyle(this);
-    }
-  });
-}
-</pre>
-
-<h2 id="Specifications">仕様書</h2>
-
-<p>どの仕様書にも含まれていません。</p>
-
-<p>Microsoft は <a href="https://web.archive.org/web/20150629144515/https://msdn.microsoft.com/en-us/library/ms535231(v=vs.85).aspx">MSDN で説明しています</a>。</p>
-
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.Element.currentStyle")}}</p>
-
-<h2 id="See_also">関連情報</h2>
-
-<ul>
- <li>{{DOMxRef("Element.runtimeStyle")}}</li>
- <li>{{DOMxRef("window.getComputedStyle()")}}</li>
-</ul>
-
-<div>{{APIRef("DOM")}}</div>