Skip to content

Commit

Permalink
[] (0) WF2: <output> element summary.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2154 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 4, 2008
1 parent b8e5126 commit 952f47d
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 3 deletions.
48 changes: 46 additions & 2 deletions index
Expand Up @@ -27116,8 +27116,52 @@ interface <dfn id=htmloptionelement>HTMLOptionElement</dfn> : <a href="#htmlelem

<p class=big-issue>...

<h4 id=the-output><span class=secno>4.9.11 </span>The <code>output</code>
element</h4>
<h4 id=the-output><span class=secno>4.9.11 </span>The <dfn
id=output><code>output</code></dfn> element</h4>

<dl class=element>
<dt>Categories

<dd><a href="#phrasing0">Phrasing content</a>.

<dt>Contexts in which this element may be used:

<dd>Where <a href="#phrasing0">phrasing content</a> is expected.

<dt>Content model:

<dd><a href="#phrasing0">Phrasing content</a>.

<dt>Element-specific attributes:

<dd><code title=attr-output-for>for/code></code>

<dd><code title=attr-output-form>form</code>

<dd><code title=attr-output-name>name</code>

<dt>DOM interface:

<dd>
<pre
class=idl>interface <dfn id=htmloutputelement>HTMLOutputElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
attribute DOMString <span title=dom-output-wrap>htmlFor</span>;
readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <span title=dom-output-form>form</span>;
attribute DOMString <span title=dom-output-name>name</span>;

readonly attribute DOMString <span title=dom-output-type>type</span>;
attribute DOMString <span title=dom-output-defaultValue>defaultValue</span>;
attribute DOMString <span title=dom-output-value>value</span>;

readonly attribute boolean <span title=dom-output-willValidate>willValidate</span>;
readonly attribute <span>ValidityState</span> <span title=dom-output-validity>validity</span>;
readonly attribute DOMString <span title=dom-output-validationMessage>validationMessage</span>;
boolean <span title=dom-output-checkValidatity>checkValidity</span>();
void <span title=dom-output-setCustomValidity>setCustomValidity</span>(in DOMString error);
};</pre>
</dl>

<p class=big-issue>...

<h4 id=association><span class=secno>4.9.12 </span>Association of controls
and forms</h4>
Expand Down
35 changes: 34 additions & 1 deletion source
Expand Up @@ -24340,7 +24340,40 @@ interface <dfn>HTMLOptionElement</dfn> : <span>HTMLElement</span> {
<p class="big-issue">...</p>


<h4>The <code>output</code> element</h4>
<h4>The <dfn><code>output</code></dfn> element</h4>

<dl class="element">
<dt>Categories</dt>
<dd><span>Phrasing content</span>.</dd>
<dt>Contexts in which this element may be used:</dt>
<dd>Where <span>phrasing content</span> is expected.</dd>
<dt>Content model:</dt>
<dd><span>Phrasing content</span>.</dd>
<dt>Element-specific attributes:</dt>
<dd><code title="attr-output-for">for/code></dd>
<dd><code title="attr-output-form">form</code></dd>
<dd><code title="attr-output-name">name</code></dd>
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn>HTMLOutputElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-output-wrap">htmlFor</span>;
readonly attribute <span>HTMLFormElement</span> <span title="dom-output-form">form</span>;
attribute DOMString <span title="dom-output-name">name</span>;

readonly attribute DOMString <span title="dom-output-type">type</span>;
attribute DOMString <span title="dom-output-defaultValue">defaultValue</span>;
attribute DOMString <span title="dom-output-value">value</span>;

readonly attribute boolean <span title="dom-output-willValidate">willValidate</span>;
readonly attribute <span>ValidityState</span> <span title="dom-output-validity">validity</span>;
readonly attribute DOMString <span title="dom-output-validationMessage">validationMessage</span>;
boolean <span title="dom-output-checkValidatity">checkValidity</span>();
void <span title="dom-output-setCustomValidity">setCustomValidity</span>(in DOMString error);
};</pre>
</dd>
</dl>

<p class="big-issue">...</p>


<h4>Association of controls and forms</h4>
Expand Down

0 comments on commit 952f47d

Please sign in to comment.