From 987cc37151a64370abecc5626d54c61b287c8185 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 7 Jun 2021 23:16:37 +0900 Subject: Web/API/Window/locationbar を更新 (#1020) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 英語版章題マクロを除去 - 2021/02/20 時点の英語版に同期 --- files/ja/web/api/window/locationbar/index.html | 96 +++++++++++++------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/files/ja/web/api/window/locationbar/index.html b/files/ja/web/api/window/locationbar/index.html index 4f6343026c..e7e280d960 100644 --- a/files/ja/web/api/window/locationbar/index.html +++ b/files/ja/web/api/window/locationbar/index.html @@ -1,45 +1,39 @@ --- -title: window.locationbar +title: Window.locationbar slug: Web/API/Window/locationbar tags: - - Gecko - - HTML DOM - - Property - - Reference - - Window - - 要更新 +- API +- HTML DOM +- NeedsExample +- NeedsMarkupWork +- Property +- Reference +- Window translation_of: Web/API/Window/locationbar --- -

{{ ApiRef() }} {{ 英語版章題("Summary") }}

+
{{APIRef}}
-

概要

+

locationbar オブジェクトを返し、これで表示/非表示を確認することができます。

-

locationbar オブジェクトを返します。このバーの表示は、ウィンドウ内でトグル(表示/非表示の状態を切り替える)ことができます。

+

構文

-

{{ 英語版章題("Syntax") }}

- -

構文

- -
objRef = window.locationbar
+
objRef = window.locationbar
 
-

{{ 英語版章題("Example") }}

+

-

- -

次の完全な HTML の例は、様々な "bar" オブジェクトの visible プロパティで利用可能な方法を示しています。

+

次の HTML の完全な例は、 locationbar オブジェクトの visible プロパティの使用方法を示しています。

<!DOCTYPE html>
-<html>
+<html lang="ja">
 <head>
-  <title>様々な DOM テスト</title>
-  <script>
-    // 存在するウィンドウのバーの状態を変更します
-    netscape.security.PrivilegeManager.
-        enablePrivilege("UniversalBrowserWrite");
-    window.locationbar.visible=
-        !window.locationbar.visible;
-  </script>
+<meta charset="UTF-8" />
+<title>様々な DOM テスト</title>
+
+<script>
+var visible = window.locationbar.visible;
+</script>
+
 </head>
 <body>
   <p>様々な DOM テスト</p>
@@ -47,30 +41,36 @@ translation_of: Web/API/Window/locationbar
 </html>
 
-

仕様

+

仕様書

- - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('HTML WHATWG', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}}{{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'browsers.html#dom-window-locationbar', 'Window.locationbar')}}{{Spec2('HTML5 W3C')}}
仕様書状態備考
{{SpecName('HTML WHATWG', 'browsers.html#dom-window-locationbar', + 'Window.locationbar')}}{{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'browsers.html#dom-window-locationbar', + 'Window.locationbar')}}{{Spec2('HTML5 W3C')}}
-

関連項目

+

ブラウザーの互換性

+ +

{{Compat("api.Window.locationbar")}}

+ +

関連情報

-- cgit v1.2.3-54-g00ecf