aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlmapelement
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/htmlmapelement
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/htmlmapelement')
-rw-r--r--files/ja/web/api/htmlmapelement/index.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlmapelement/index.html b/files/ja/web/api/htmlmapelement/index.html
new file mode 100644
index 0000000000..837771439b
--- /dev/null
+++ b/files/ja/web/api/htmlmapelement/index.html
@@ -0,0 +1,76 @@
+---
+title: HTMLMapElement
+slug: Web/API/HTMLMapElement
+tags:
+ - API
+ - HTML DOM
+ - インターフェイス
+ - リファレンス
+translation_of: Web/API/HTMLMapElement
+---
+<div>
+<div>{{ APIRef("HTML DOM") }}</div>
+</div>
+
+<p><strong><code>HTMLMapElement</code></strong> インターフェイスは、map 要素のレイアウトと表示を操作するための特別なプロパティとメソッド (継承によっても利用可能な通常のオブジェクト {{domxref("HTMLElement")}} インターフェイスを超えるもの) を提供します。</p>
+
+<p>{{InheritanceDiagram(600, 120)}}</p>
+
+<h2 id="プロパティ">プロパティ</h2>
+
+<p><em>親の {{domxref("HTMLElement")}} からプロパティを継承しています。</em></p>
+
+<dl>
+ <dt>{{domxref("HTMLMapElement.name")}}</dt>
+ <dd>Is a {{domxref("DOMString")}} representing the {{HTMLElement("map")}} element for referencing it other context. If the <code>id</code> attribute is set, this must have the same value; and it cannot be <code>null</code> or empty.</dd>
+ <dt>{{domxref("HTMLMapElement.areas")}} {{readonlyInline}}</dt>
+ <dd>Is a live {{domxref("HTMLCollection")}} representing the {{HTMLElement("area")}} elements associated to this {{HTMLElement("map")}}.</dd>
+</dl>
+
+<h2 id="メソッド">メソッド</h2>
+
+<p><em>特定のメソッドはありません。親である {{domxref("HTMLElement")}} からメソッドを継承します。</em></p>
+
+<h2 id="仕様">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">ステータス</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', "#htmlmapelement", "HTMLMapElement")}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('HTML5 W3C', "embedded-content-0.html#the-map-element", "HTMLMapElement")}}</td>
+ <td>{{Spec2('HTML5 W3C')}}</td>
+ <td><code>images</code> プロパティを追加します。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM2 HTML', 'html.html#ID-94109203', 'HTMLAreaElement')}}</td>
+ <td>{{Spec2('DOM2 HTML')}}</td>
+ <td>{{SpecName("DOM1")}} からの変更はありません。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM1', 'level-one-html.html#ID-94109203', 'HTMLAreaElement')}}</td>
+ <td>{{Spec2('DOM1')}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="ブラウザの互換性">ブラウザの互換性</h2>
+
+<div class="hidden">このページの互換性テーブルは構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックして、プルリクエストを送ってください。</div>
+
+<p>{{Compat("api.HTMLMapElement")}}</p>
+
+<h2 id="あわせて参照">あわせて参照</h2>
+
+<ul>
+ <li>HTML element implementing this interface: {{ HTMLElement("map") }}.</li>
+</ul>