- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 04 Sep 2008 22:47:16 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv28876 Modified Files: Overview.html Log Message: WF2: <output> element summary. (whatwg r2154) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1326 retrieving revision 1.1327 diff -u -d -r1.1326 -r1.1327 --- Overview.html 4 Sep 2008 22:30:46 -0000 1.1326 +++ Overview.html 4 Sep 2008 22:47:13 -0000 1.1327 @@ -27124,8 +27124,52 @@ <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>
Received on Thursday, 4 September 2008 22:47:55 UTC