aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html')
-rw-r--r--files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html b/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html
new file mode 100644
index 0000000000..9b47d74b9c
--- /dev/null
+++ b/files/ja/orphaned/web/api/navigatorplugins/javaenabled/index.html
@@ -0,0 +1,48 @@
+---
+title: NavigatorPlugins.javaEnabled()
+slug: orphaned/Web/API/NavigatorPlugins/javaEnabled
+tags:
+ - API
+ - Method
+ - Reference
+translation_of: Web/API/NavigatorPlugins/javaEnabled
+original_slug: Web/API/NavigatorPlugins/javaEnabled
+---
+<p>{{ APIRef("HTML DOM") }}</p>
+
+<p>このメソッドは常に false を返します。</p>
+
+<h2 id="Syntax">構文</h2>
+
+<pre class="eval"><em>result</em> = window.navigator.javaEnabled()
+</pre>
+
+<h2 id="Example">例</h2>
+
+<pre class="eval">if (window.navigator.javaEnabled()) {
+ // コードは実行されることはありません。条件は常に false になります。
+}
+</pre>
+
+<h2 id="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-navigator-javaenabled', 'NavigatorPlugins.javaEnabled')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat("api.NavigatorPlugins.javaEnabled")}}</p>