diff options
Diffstat (limited to 'files/ja/web/api/htmldetailselement/index.html')
-rw-r--r-- | files/ja/web/api/htmldetailselement/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ja/web/api/htmldetailselement/index.html b/files/ja/web/api/htmldetailselement/index.html new file mode 100644 index 0000000000..33fb7304d3 --- /dev/null +++ b/files/ja/web/api/htmldetailselement/index.html @@ -0,0 +1,48 @@ +--- +title: HTMLDetailsElement +slug: Web/API/HTMLDetailsElement +translation_of: Web/API/HTMLDetailsElement +--- +<div class="blockIndicator note"> +<p>translation in progress</p> +</div> + +<div>{{APIRef("HTML DOM")}}</div> + +<p>The <strong><code>HTMLDetailsElement</code></strong> interface provides special properties (beyond the regular {{domxref("HTMLElement")}} interface it also has available to it by inheritance) for manipulating {{HTMLElement("details")}} elements.</p> + +<p>{{InheritanceDiagram(600, 120)}}</p> + +<h2 id="Properties">Properties</h2> + +<p><em>Inherits properties from its parent, {{domxref("HTMLElement")}}.</em></p> + +<dl> + <dt>{{domxref("HTMLDetailsElement.open")}}</dt> + <dd>Is a {{domxref("boolean")}} reflecting the {{htmlattrxref("open", "details")}} HTML attribute, indicating whether or not the element’s contents (not counting the {{HTMLElement("summary")}}) is to be shown to the user.</dd> +</dl> + +<h2 id="Methods">Methods</h2> + +<p><em>No specific method; inherits methods from its parent, {{domxref("HTMLElement")}}.</em></p> + +<h2 id="Specifications">Specifications</h2> + +<ul> + <li><a href="https://html.spec.whatwg.org/multipage/interactive-elements.html#htmldetailselement">HTML Living Standard</a></li> + <li><a href="https://www.w3.org/TR/html52/interactive-elements.html#htmldetailselement">HTML 5.2 (W3C Proposed Recommendation)</a></li> +</ul> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<div> + + +<p>{{Compat("api.HTMLDetailsElement")}}</p> +</div> + +<h2 id="See_also">See also</h2> + +<ul> + <li>The HTML element implementing this interface: {{HTMLElement("details")}}</li> +</ul> |