Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[] (0) WF2: <fieldset> element summary.
git-svn-id: http://svn.whatwg.org/webapps@2143 340c8d12-0b0e-0410-8428-c7bf67bfef74
- Loading branch information
<p class="big-issue">...</p> | ||
|
||
|
||
<h4>The <code>fieldset</code> element</h4> | ||
<h4>The <dfn><code>fieldset</code></dfn> element</h4> | ||
|
||
<dl class="element"> | ||
<dt>Categories</dt> | ||
<dd><span>Flow content</span>.</dd> | ||
<dt>Contexts in which this element may be used:</dt> | ||
<dd>Where <span>flow content</span> is expected.</dd> | ||
<dt>Content model:</dt> | ||
<dd><span>Flow content</span>.</dd> | ||
<dt>Element-specific attributes:</dt> | ||
<dd><code title="attr-form-disabled">disabled</code></dd> | ||
<dd><code title="attr-form-form">form</code></dd> | ||
<dt>DOM interface:</dt> | ||
<dd> | ||
<pre class="idl">interface <dfn>HTMLFieldSetElement</dfn> : <span>HTMLElement</span> { | ||
attribute DOMString <span title="dom-fieldset-disabled">disabled</span>; | ||
readonly attribute <span>HTMLFormElement</span> <span title="dom-fieldset-form">form</span>; | ||
|
||
readonly attribute <span>HTMLFormControlsCollection</span> <span title="dom-fieldset-elements">elements</span>; | ||
|
||
readonly attribute boolean <span title="dom-fieldset-willValidate">willValidate</span>; | ||
readonly attribute <span>ValidityState</span> <span title="dom-fieldset-validity">validity</span>; | ||
readonly attribute DOMString <span title="dom-fieldset-validationMessage">validationMessage</span>; | ||
boolean <span title="dom-fieldset-checkValidatity">checkValidity</span>(); | ||
void <span title="dom-fieldset-setCustomValidity">setCustomValidity</span>(in DOMString error); | ||
};</pre> | ||
</dd> | ||
</dl> | ||
|
||
<p class="big-issue">...</p> | ||
|
||
|
||
<h4>The <code>input</code> element</h4> | ||
|