- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 12 Feb 2010 10:33:52 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup In directory hutz:/tmp/cvs-serv12900 Modified Files: col.html object.html ol.html optgroup.html option.html output.html p.html param.html pre.html progress.html script.html select.html source.html span.html spec.html style.html table.html tbody.html td.html textarea.html tfoot.html th.html thead.html time.html title.html tr.html ul.html video.html Log Message: checkpointing Index: th.html =================================================================== RCS file: /sources/public/html5/markup/th.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- th.html 12 Feb 2010 04:52:27 -0000 1.44 +++ th.html 12 Feb 2010 10:33:49 -0000 1.45 @@ -133,9 +133,9 @@ <p class="permitted-parents"><span class="context-mdl"><a href="tr.html#tr">tr</a></span></p> </div> <div class="no-number no-toc" id="th-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#th-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#th-interface">#</a></h2><pre class="idl">interface <b>HTMLTableHeaderCellElement</b> : <a href="http://dev.w3.org/html5/spec/#htmltablecellelement" title="">HTMLTableCellElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-th-scope" title="dom-th-scope">scope</a>; +};</pre></div> <div class="no-number no-toc" id="th-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#th-display">#</a></h2> <div class="css-props" id="th-css"><div class="selectors"><span class="selector">th</span> { Index: tr.html =================================================================== RCS file: /sources/public/html5/markup/tr.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- tr.html 12 Feb 2010 04:52:27 -0000 1.34 +++ tr.html 12 Feb 2010 10:33:50 -0000 1.35 @@ -71,9 +71,13 @@ <p class="permitted-parents"><span class="context-mdl"><a href="table.html#table">table</a></span>, <span class="context-mdl"><a href="thead.html#thead">thead</a></span>, <span class="context-mdl"><a href="tfoot.html#tfoot">tfoot</a></span>, <span class="context-mdl"><a href="tbody.html#tbody">tbody</a></span></p> </div> <div class="no-number no-toc" id="tr-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#tr-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#tr-interface">#</a></h2><pre class="idl">interface <b>HTMLTableRowElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-tr-rowindex" title="dom-tr-rowIndex">rowIndex</a>; + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-tr-sectionrowindex" title="dom-tr-sectionRowIndex">sectionRowIndex</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tr-cells" title="dom-tr-cells">cells</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tr-insertcell" title="dom-tr-insertCell">insertCell</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tr-deletecell" title="dom-tr-deleteCell">deleteCell</a>(in long index); +};</pre></div> <div class="no-number no-toc" id="tr-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tr-display">#</a></h2> <div class="css-props" id="tr-css"><div class="selectors"><span class="selector">tr</span> { Index: table.html =================================================================== RCS file: /sources/public/html5/markup/table.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- table.html 12 Feb 2010 04:52:27 -0000 1.40 +++ table.html 12 Feb 2010 10:33:49 -0000 1.41 @@ -97,9 +97,23 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="table-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#table-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#table-interface">#</a></h2><pre class="idl">interface <b>HTMLTableElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute <a href="http://dev.w3.org/html5/spec/#htmltablecaptionelement" title="">HTMLTableCaptionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-caption" title="dom-table-caption">caption</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createcaption" title="dom-table-createCaption">createCaption</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletecaption" title="dom-table-deleteCaption">deleteCaption</a>(); + attribute <a href="http://dev.w3.org/html5/spec/#htmltablesectionelement" title="">HTMLTableSectionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-thead" title="dom-table-tHead">tHead</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createthead" title="dom-table-createTHead">createTHead</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletethead" title="dom-table-deleteTHead">deleteTHead</a>(); + attribute <a href="http://dev.w3.org/html5/spec/#htmltablesectionelement" title="">HTMLTableSectionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-tfoot" title="dom-table-tFoot">tFoot</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createtfoot" title="dom-table-createTFoot">createTFoot</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletetfoot" title="dom-table-deleteTFoot">deleteTFoot</a>(); + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-table-tbodies" title="dom-table-tBodies">tBodies</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createtbody" title="dom-table-createTBody">createTBody</a>(); + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-table-rows" title="dom-table-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-insertrow" title="dom-table-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deleterow" title="dom-table-deleteRow">deleteRow</a>(in long index); + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-table-summary" title="dom-table-summary">summary</a>; +};</pre></div> <div class="no-number no-toc" id="table-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#table-display">#</a></h2> <div class="css-props" id="table-css"><div class="selectors"><span class="selector">table</span> { Index: script.html =================================================================== RCS file: /sources/public/html5/markup/script.html,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- script.html 12 Feb 2010 04:52:26 -0000 1.50 +++ script.html 12 Feb 2010 10:33:49 -0000 1.51 @@ -107,9 +107,14 @@ <a href="common-models.html#common.elem.phrasing">phrasing elements</a></span></span></p> </div> <div class="no-number no-toc" id="script-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#script-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#script-interface">#</a></h2><pre class="idl">interface <b>HTMLScriptElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-src" title="dom-script-src">src</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-script-async" title="dom-script-async">async</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-script-defer" title="dom-script-defer">defer</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-type" title="dom-script-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-charset" title="dom-script-charset">charset</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-text" title="dom-script-text">text</a>; +};</pre></div> <div class="no-number no-toc" id="script-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#script-display">#</a></h2> <div class="css-props" id="script-css"><div class="selectors"><span class="selector">script</span> { Index: time.html =================================================================== RCS file: /sources/public/html5/markup/time.html,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- time.html 12 Feb 2010 04:52:27 -0000 1.41 +++ time.html 12 Feb 2010 10:33:49 -0000 1.42 @@ -90,9 +90,11 @@ <a href="datatypes.html#common.data.date-or-time">date-or-time</a> datatype.</p> </div></div><div class="no-number no-toc" id="time-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#time-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#time-interface">#</a></h2><pre class="idl">interface <b>HTMLTimeElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-time-datetime" title="dom-time-datetime">dateTime</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-time-pubdate" title="dom-time-pubDate">pubDate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-time-valueasdate" title="dom-time-valueAsDate">valueAsDate</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="thead.html">« thead</a></span> Index: progress.html =================================================================== RCS file: /sources/public/html5/markup/progress.html,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- progress.html 12 Feb 2010 04:52:26 -0000 1.41 +++ progress.html 12 Feb 2010 10:33:49 -0000 1.42 @@ -77,9 +77,13 @@ <a href="common-models.html#common.elem.phrasing">phrasing elements</a></span></span></p> </div> <div class="no-number no-toc" id="progress-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#progress-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#progress-interface">#</a></h2><pre class="idl">interface <b>HTMLProgressElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-value" title="dom-progress-value">value</a>; + attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-max" title="dom-progress-max">max</a>; + readonly attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-position" title="dom-progress-position">position</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="pre.html">« pre</a></span> Index: textarea.html =================================================================== RCS file: /sources/public/html5/markup/textarea.html,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- textarea.html 12 Feb 2010 07:56:04 -0000 1.42 +++ textarea.html 12 Feb 2010 10:33:49 -0000 1.43 @@ -106,9 +106,37 @@ <a href="textarea.html#textarea" class="element">textarea</a> element represent the control’s default value.</p> </div></div><div class="no-number no-toc" id="textarea-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#textarea-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#textarea-interface">#</a></h2><pre class="idl">interface <b>HTMLTextAreaElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-cols" title="dom-textarea-cols">cols</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-disabled" title="dom-fe-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-textarea-maxlength" title="dom-textarea-maxLength">maxLength</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-placeholder" title="dom-textarea-placeholder">placeholder</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-textarea-readonly" title="dom-textarea-readOnly">readOnly</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-textarea-required" title="dom-textarea-required">required</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-rows" title="dom-textarea-rows">rows</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-wrap" title="dom-textarea-wrap">wrap</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-type" title="dom-textarea-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-defaultvalue" title="dom-textarea-defaultValue">defaultValue</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-value" title="dom-textarea-value">value</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-textlength" title="dom-textarea-textLength">textLength</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + + void <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-select" title="dom-textarea/input-select">select</a>(); + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-selectionstart" title="dom-textarea/input-selectionStart">selectionStart</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-selectionend" title="dom-textarea/input-selectionEnd">selectionEnd</a>; + void <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-setselectionrange" title="dom-textarea/input-setSelectionRange">setSelectionRange</a>(in unsigned long start, in unsigned long end); +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="td.html">« td</a></span> Index: object.html =================================================================== RCS file: /sources/public/html5/markup/object.html,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- object.html 12 Feb 2010 04:52:26 -0000 1.47 +++ object.html 12 Feb 2010 10:33:49 -0000 1.48 @@ -160,9 +160,23 @@ nested browsing context, or as external content to be processed by a plugin.</p> </div></div><div class="no-number no-toc" id="object-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#object-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#object-interface">#</a></h2><pre class="idl">interface <b>HTMLObjectElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-data" title="dom-object-data">data</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-type" title="dom-object-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-name" title="dom-object-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-usemap" title="dom-object-useMap">useMap</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-width" title="dom-dim-width">width</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-height" title="dom-dim-height">height</a>; + readonly attribute Document <a href="http://dev.w3.org/html5/spec/#dom-object-contentdocument" title="dom-object-contentDocument">contentDocument</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#windowproxy" title="">WindowProxy</a> <a href="http://dev.w3.org/html5/spec/#dom-object-contentwindow" title="dom-object-contentWindow">contentWindow</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="noscript.html">« noscript</a></span> Index: col.html =================================================================== RCS file: /sources/public/html5/markup/col.html,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- col.html 12 Feb 2010 04:52:23 -0000 1.36 +++ col.html 12 Feb 2010 10:33:49 -0000 1.37 @@ -78,10 +78,8 @@ <p class="permitted-parents"><span class="context-mdl"><a href="colgroup.html#colgroup">colgroup</a></span></p> </div> <div class="no-number no-toc" id="col-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#col-interface">#</a></h2><pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { - readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); - void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); + <h2 class="element-subhead">DOM interface <a class="hash" href="#col-interface">#</a></h2><pre class="idl">interface <b>HTMLTableColElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-colgroup-span" title="dom-colgroup-span">span</a>; };</pre></div> <div class="no-number no-toc" id="col-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#col-display">#</a></h2> Index: ul.html =================================================================== RCS file: /sources/public/html5/markup/ul.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- ul.html 12 Feb 2010 04:52:27 -0000 1.34 +++ ul.html 12 Feb 2010 10:33:50 -0000 1.35 @@ -60,9 +60,7 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="ul-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#ul-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#ul-interface">#</a></h2><pre class="idl">interface <b>HTMLUListElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre></div> <div class="no-number no-toc" id="ul-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#ul-display">#</a></h2> <div class="css-props" id="ul-css"><div class="selectors"><span class="selector">ul</span> { Index: style.html =================================================================== RCS file: /sources/public/html5/markup/style.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- style.html 12 Feb 2010 04:52:27 -0000 1.44 +++ style.html 12 Feb 2010 10:33:49 -0000 1.45 @@ -77,9 +77,13 @@ <a href="common-models.html#common.elem.metadata">metadata elements</a></span></span>, <span class="context-mdl"><a href="div.html#div">div</a></span>, <span class="context-mdl"><a href="noscript.html#noscript">noscript</a></span>, <span class="context-mdl"><a href="section.html#section">section</a></span>, <span class="context-mdl"><a href="article.html#article">article</a></span>, <span class="context-mdl"><a href="aside.html#aside">aside</a></span></p> </div> <div class="no-number no-toc" id="style-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#style-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#style-interface">#</a></h2><pre class="idl">interface <b>HTMLStyleElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-style-disabled" title="dom-style-disabled">disabled</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-style-media" title="dom-style-media">media</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-style-type" title="dom-style-type">type</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-style-scoped" title="dom-style-scoped">scoped</a>; +}; +<a href="http://dev.w3.org/html5/spec/#htmlstyleelement" title="">HTMLStyleElement</a> implements ;</pre></div> <div class="no-number no-toc" id="style-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#style-display">#</a></h2> <div class="css-props" id="style-css"><div class="selectors"><span class="selector">style</span> { Index: p.html =================================================================== RCS file: /sources/public/html5/markup/p.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- p.html 12 Feb 2010 04:52:26 -0000 1.40 +++ p.html 12 Feb 2010 10:33:49 -0000 1.41 @@ -84,9 +84,7 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="p-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#p-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#p-interface">#</a></h2><pre class="idl">interface <b>HTMLParagraphElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre></div> <div class="no-number no-toc" id="p-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#p-display">#</a></h2> <div class="css-props" id="p-css"><div class="selectors"><span class="selector">p</span> { Index: param.html =================================================================== RCS file: /sources/public/html5/markup/param.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- param.html 12 Feb 2010 04:52:26 -0000 1.40 +++ param.html 12 Feb 2010 10:33:49 -0000 1.41 @@ -65,9 +65,10 @@ <p class="permitted-parents"><a href="object.html#object">object</a></p> </div> <div class="no-number no-toc" id="param-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#param-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#param-interface">#</a></h2><pre class="idl">interface <b>HTMLParamElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-param-name" title="dom-param-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-param-value" title="dom-param-value">value</a>; +};</pre></div> <div class="no-number no-toc" id="param-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#param-display">#</a></h2> <div class="css-props" id="param-css"><div class="selectors"><span class="selector">param</span> { Index: span.html =================================================================== RCS file: /sources/public/html5/markup/span.html,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- span.html 12 Feb 2010 04:52:26 -0000 1.36 +++ span.html 12 Feb 2010 10:33:49 -0000 1.37 @@ -56,9 +56,7 @@ <a href="common-attributes.html#common.attrs.title">title</a> to add additional semantics and structure to phrasing content.</p> </div></div><div class="no-number no-toc" id="span-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#span-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#span-interface">#</a></h2><pre class="idl">interface <b>HTMLSpanElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="source.html">« source</a></span> Index: option.html =================================================================== RCS file: /sources/public/html5/markup/option.html,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- option.html 12 Feb 2010 04:52:26 -0000 1.42 +++ option.html 12 Feb 2010 10:33:49 -0000 1.43 @@ -80,9 +80,22 @@ <p class="permitted-parents"><span class="context-mdl"><a href="optgroup.html#optgroup">optgroup</a></span>, <span class="context-mdl"><a href="select.html#select">select</a></span>, <span class="context-mdl"><a href="datalist.html#datalist">datalist</a></span></p> </div> <div class="no-number no-toc" id="option-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#option-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#option-interface">#</a></h2><pre class="idl">[NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option" title="dom-option">Option</a>(), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-t" title="dom-option-t">Option</a>(in DOMString text), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tv" title="dom-option-tv">Option</a>(in DOMString text, in DOMString value), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tvd" title="dom-option-tvd">Option</a>(in DOMString text, in DOMString value, in boolean defaultSelected), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tvds" title="dom-option-tvds">Option</a>(in DOMString text, in DOMString value, in boolean defaultSelected, in boolean selected)] +interface <b>HTMLOptionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-disabled" title="dom-option-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-option-form" title="dom-option-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-label" title="dom-option-label">label</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-defaultselected" title="dom-option-defaultSelected">defaultSelected</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-selected" title="dom-option-selected">selected</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-value" title="dom-option-value">value</a>; + + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-text" title="dom-option-text">text</a>; + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-option-index" title="dom-option-index">index</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="optgroup.html">« optgroup</a></span> Index: select.html =================================================================== RCS file: /sources/public/html5/markup/select.html,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- select.html 12 Feb 2010 04:52:26 -0000 1.40 +++ select.html 12 Feb 2010 10:33:49 -0000 1.41 @@ -90,9 +90,36 @@ <a href="common-models.html#common.elem.phrasing">phrasing elements</a></span></span></p> </div> <div class="no-number no-toc" id="select-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#select-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#select-interface">#</a></h2><pre class="idl">interface <b>HTMLSelectElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-disabled" title="dom-fe-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-select-multiple" title="dom-select-multiple">multiple</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-select-size" title="dom-select-size">size</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-select-type" title="dom-select-type">type</a>; + + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmloptionscollection" title="">HTMLOptionsCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-select-options" title="dom-select-options">options</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-select-length" title="dom-select-length">length</a>; + caller getter any <a href="http://dev.w3.org/html5/spec/#dom-select-item" title="dom-select-item">item</a>(in unsigned long index); + caller getter any <a href="http://dev.w3.org/html5/spec/#dom-select-nameditem" title="dom-select-namedItem">namedItem</a>(in DOMString name); + void <a href="http://dev.w3.org/html5/spec/#dom-select-add" title="dom-select-add">add</a>(in <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> element, in optional <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> before); + void <a href="http://dev.w3.org/html5/spec/#dom-select-add" title="dom-select-add">add</a>(in <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> element, in long before); + void <a href="http://dev.w3.org/html5/spec/#dom-select-remove" title="dom-select-remove">remove</a>(in long index); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-select-selectedoptions" title="dom-select-selectedOptions">selectedOptions</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-select-selectedindex" title="dom-select-selectedIndex">selectedIndex</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-select-value" title="dom-select-value">value</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="section.html">« section</a></span> Index: td.html =================================================================== RCS file: /sources/public/html5/markup/td.html,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- td.html 12 Feb 2010 04:52:27 -0000 1.42 +++ td.html 12 Feb 2010 10:33:49 -0000 1.43 @@ -120,9 +120,7 @@ <p class="permitted-parents"><span class="context-mdl"><a href="tr.html#tr">tr</a></span></p> </div> <div class="no-number no-toc" id="td-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#td-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#td-interface">#</a></h2><pre class="idl">interface <b>HTMLTableDataCellElement</b> : <a href="http://dev.w3.org/html5/spec/#htmltablecellelement" title="">HTMLTableCellElement</a> {};</pre></div> <div class="no-number no-toc" id="td-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#td-display">#</a></h2> <div class="css-props" id="td-css"><div class="selectors"><span class="selector">td</span> { Index: tfoot.html =================================================================== RCS file: /sources/public/html5/markup/tfoot.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- tfoot.html 12 Feb 2010 04:52:27 -0000 1.34 +++ tfoot.html 12 Feb 2010 10:33:49 -0000 1.35 @@ -67,9 +67,11 @@ <p class="permitted-parents"><span class="context-mdl"><a href="table.html#table">table</a></span></p> </div> <div class="no-number no-toc" id="tfoot-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#tfoot-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#tfoot-interface">#</a></h2><pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre></div> <div class="no-number no-toc" id="tfoot-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tfoot-display">#</a></h2> <div class="css-props" id="tfoot-css"><div class="selectors"><span class="selector">tfoot</span> { Index: spec.html =================================================================== RCS file: /sources/public/html5/markup/spec.html,v retrieving revision 1.166 retrieving revision 1.167 diff -u -d -r1.166 -r1.167 --- spec.html 12 Feb 2010 10:00:30 -0000 1.166 +++ spec.html 12 Feb 2010 10:33:49 -0000 1.167 @@ -4696,10 +4696,8 @@ <div class="no-number no-toc" id="col-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#col-interface">#</a> </h2> -<pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { - readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); - void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +<pre class="idl">interface <b>HTMLTableColElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-colgroup-span" title="dom-colgroup-span">span</a>; };</pre> </div> <div class="no-number no-toc" id="col-display"> @@ -13811,9 +13809,23 @@ <div class="no-number no-toc" id="object-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#object-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLObjectElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-data" title="dom-object-data">data</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-type" title="dom-object-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-name" title="dom-object-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-object-usemap" title="dom-object-useMap">useMap</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-width" title="dom-dim-width">width</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-height" title="dom-dim-height">height</a>; + readonly attribute Document <a href="http://dev.w3.org/html5/spec/#dom-object-contentdocument" title="dom-object-contentDocument">contentDocument</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#windowproxy" title="">WindowProxy</a> <a href="http://dev.w3.org/html5/spec/#dom-object-contentwindow" title="dom-object-contentWindow">contentWindow</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); +};</pre> </div> </div> <div id="ol" class="section"> @@ -13912,9 +13924,10 @@ <div class="no-number no-toc" id="ol-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#ol-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLOListElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-ol-reversed" title="dom-ol-reversed">reversed</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-ol-start" title="dom-ol-start">start</a>; +};</pre> </div> <div class="no-number no-toc" id="ol-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#ol-display">#</a> @@ -14000,9 +14013,10 @@ <div class="no-number no-toc" id="optgroup-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#optgroup-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLOptGroupElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-optgroup-disabled" title="dom-optgroup-disabled">disabled</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-optgroup-label" title="dom-optgroup-label">label</a>; +};</pre> </div> </div> <div id="option" class="section"> @@ -14091,9 +14105,22 @@ <div class="no-number no-toc" id="option-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#option-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">[NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option" title="dom-option">Option</a>(), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-t" title="dom-option-t">Option</a>(in DOMString text), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tv" title="dom-option-tv">Option</a>(in DOMString text, in DOMString value), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tvd" title="dom-option-tvd">Option</a>(in DOMString text, in DOMString value, in boolean defaultSelected), + NamedConstructor=<a href="http://dev.w3.org/html5/spec/#dom-option-tvds" title="dom-option-tvds">Option</a>(in DOMString text, in DOMString value, in boolean defaultSelected, in boolean selected)] +interface <b>HTMLOptionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-disabled" title="dom-option-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-option-form" title="dom-option-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-label" title="dom-option-label">label</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-defaultselected" title="dom-option-defaultSelected">defaultSelected</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-option-selected" title="dom-option-selected">selected</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-value" title="dom-option-value">value</a>; + + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-option-text" title="dom-option-text">text</a>; + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-option-index" title="dom-option-index">index</a>; +};</pre> </div> </div> <div id="output" class="section"> @@ -14161,9 +14188,23 @@ <div class="no-number no-toc" id="output-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#output-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLOutputElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + [PutForwards=<a href="http://dev.w3.org/html5/spec/#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="http://dev.w3.org/html5/spec/#domsettabletokenlist" title="">DOMSettableTokenList</a> ; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-type" title="dom-output-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-defaultvalue" title="dom-output-defaultValue">defaultValue</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-value" title="dom-output-value">value</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre> </div> </div> <div id="p" class="section"> @@ -14254,9 +14295,7 @@ <div class="no-number no-toc" id="p-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#p-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLParagraphElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre> </div> <div class="no-number no-toc" id="p-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#p-display">#</a> @@ -14348,9 +14387,10 @@ <div class="no-number no-toc" id="param-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#param-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLParamElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-param-name" title="dom-param-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-param-value" title="dom-param-value">value</a>; +};</pre> </div> <div class="no-number no-toc" id="param-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#param-display">#</a> @@ -14424,9 +14464,7 @@ <div class="no-number no-toc" id="pre-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#pre-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLPreElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre> </div> <div class="no-number no-toc" id="pre-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#pre-display">#</a> @@ -14535,9 +14573,13 @@ <div class="no-number no-toc" id="progress-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#progress-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLProgressElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-value" title="dom-progress-value">value</a>; + attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-max" title="dom-progress-max">max</a>; + readonly attribute float <a href="http://dev.w3.org/html5/spec/#dom-progress-position" title="dom-progress-position">position</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre> </div> </div> <div id="q" class="section"> @@ -15009,9 +15051,14 @@ <div class="no-number no-toc" id="script-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#script-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLScriptElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-src" title="dom-script-src">src</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-script-async" title="dom-script-async">async</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-script-defer" title="dom-script-defer">defer</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-type" title="dom-script-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-charset" title="dom-script-charset">charset</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-script-text" title="dom-script-text">text</a>; +};</pre> </div> <div class="no-number no-toc" id="script-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#script-display">#</a> @@ -15202,9 +15249,36 @@ <div class="no-number no-toc" id="select-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#select-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLSelectElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-disabled" title="dom-fe-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-select-multiple" title="dom-select-multiple">multiple</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-select-size" title="dom-select-size">size</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-select-type" title="dom-select-type">type</a>; + + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmloptionscollection" title="">HTMLOptionsCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-select-options" title="dom-select-options">options</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-select-length" title="dom-select-length">length</a>; + caller getter any <a href="http://dev.w3.org/html5/spec/#dom-select-item" title="dom-select-item">item</a>(in unsigned long index); + caller getter any <a href="http://dev.w3.org/html5/spec/#dom-select-nameditem" title="dom-select-namedItem">namedItem</a>(in DOMString name); + void <a href="http://dev.w3.org/html5/spec/#dom-select-add" title="dom-select-add">add</a>(in <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> element, in optional <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> before); + void <a href="http://dev.w3.org/html5/spec/#dom-select-add" title="dom-select-add">add</a>(in <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> element, in long before); + void <a href="http://dev.w3.org/html5/spec/#dom-select-remove" title="dom-select-remove">remove</a>(in long index); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-select-selectedoptions" title="dom-select-selectedOptions">selectedOptions</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-select-selectedindex" title="dom-select-selectedIndex">selectedIndex</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-select-value" title="dom-select-value">value</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre> </div> </div> <div id="small" class="section"> @@ -15369,9 +15443,11 @@ <div class="no-number no-toc" id="source-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#source-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLSourceElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-src" title="dom-source-src">src</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-type" title="dom-source-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-media" title="dom-source-media">media</a>; +};</pre> </div> </div> <div id="span" class="section"> @@ -15437,9 +15513,7 @@ <div class="no-number no-toc" id="span-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#span-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLSpanElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre> </div> </div> <div id="strong" class="section"> @@ -15591,9 +15665,13 @@ <div class="no-number no-toc" id="style-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#style-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLStyleElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-style-disabled" title="dom-style-disabled">disabled</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-style-media" title="dom-style-media">media</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-style-type" title="dom-style-type">type</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-style-scoped" title="dom-style-scoped">scoped</a>; +}; +<a href="http://dev.w3.org/html5/spec/#htmlstyleelement" title="">HTMLStyleElement</a> implements ;</pre> </div> <div class="no-number no-toc" id="style-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#style-display">#</a> @@ -15907,9 +15985,23 @@ <div class="no-number no-toc" id="table-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#table-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute <a href="http://dev.w3.org/html5/spec/#htmltablecaptionelement" title="">HTMLTableCaptionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-caption" title="dom-table-caption">caption</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createcaption" title="dom-table-createCaption">createCaption</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletecaption" title="dom-table-deleteCaption">deleteCaption</a>(); + attribute <a href="http://dev.w3.org/html5/spec/#htmltablesectionelement" title="">HTMLTableSectionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-thead" title="dom-table-tHead">tHead</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createthead" title="dom-table-createTHead">createTHead</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletethead" title="dom-table-deleteTHead">deleteTHead</a>(); + attribute <a href="http://dev.w3.org/html5/spec/#htmltablesectionelement" title="">HTMLTableSectionElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-tfoot" title="dom-table-tFoot">tFoot</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createtfoot" title="dom-table-createTFoot">createTFoot</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deletetfoot" title="dom-table-deleteTFoot">deleteTFoot</a>(); + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-table-tbodies" title="dom-table-tBodies">tBodies</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-createtbody" title="dom-table-createTBody">createTBody</a>(); + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-table-rows" title="dom-table-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-table-insertrow" title="dom-table-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-table-deleterow" title="dom-table-deleteRow">deleteRow</a>(in long index); + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-table-summary" title="dom-table-summary">summary</a>; +};</pre> </div> <div class="no-number no-toc" id="table-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#table-display">#</a> @@ -16008,9 +16100,11 @@ <div class="no-number no-toc" id="tbody-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#tbody-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre> </div> <div class="no-number no-toc" id="tbody-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tbody-display">#</a> @@ -16165,9 +16259,7 @@ <div class="no-number no-toc" id="td-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#td-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableDataCellElement</b> : <a href="http://dev.w3.org/html5/spec/#htmltablecellelement" title="">HTMLTableCellElement</a> {};</pre> </div> <div class="no-number no-toc" id="td-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#td-display">#</a> @@ -16305,9 +16397,37 @@ <div class="no-number no-toc" id="textarea-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#textarea-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTextAreaElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-cols" title="dom-textarea-cols">cols</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-fe-disabled" title="dom-fe-disabled">disabled</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-textarea-maxlength" title="dom-textarea-maxLength">maxLength</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-placeholder" title="dom-textarea-placeholder">placeholder</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-textarea-readonly" title="dom-textarea-readOnly">readOnly</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-textarea-required" title="dom-textarea-required">required</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-rows" title="dom-textarea-rows">rows</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-wrap" title="dom-textarea-wrap">wrap</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-type" title="dom-textarea-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-defaultvalue" title="dom-textarea-defaultValue">defaultValue</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-textarea-value" title="dom-textarea-value">value</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea-textlength" title="dom-textarea-textLength">textLength</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + + void <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-select" title="dom-textarea/input-select">select</a>(); + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-selectionstart" title="dom-textarea/input-selectionStart">selectionStart</a>; + attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-selectionend" title="dom-textarea/input-selectionEnd">selectionEnd</a>; + void <a href="http://dev.w3.org/html5/spec/#dom-textarea/input-setselectionrange" title="dom-textarea/input-setSelectionRange">setSelectionRange</a>(in unsigned long start, in unsigned long end); +};</pre> </div> </div> <div id="tfoot" class="section"> @@ -16383,9 +16503,11 @@ <div class="no-number no-toc" id="tfoot-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#tfoot-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre> </div> <div class="no-number no-toc" id="tfoot-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tfoot-display">#</a> @@ -16554,9 +16676,9 @@ <div class="no-number no-toc" id="th-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#th-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableHeaderCellElement</b> : <a href="http://dev.w3.org/html5/spec/#htmltablecellelement" title="">HTMLTableCellElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-th-scope" title="dom-th-scope">scope</a>; +};</pre> </div> <div class="no-number no-toc" id="th-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#th-display">#</a> @@ -16654,9 +16776,11 @@ <div class="no-number no-toc" id="thead-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#thead-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre> </div> <div class="no-number no-toc" id="thead-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#thead-display">#</a> @@ -16778,9 +16902,11 @@ <div class="no-number no-toc" id="time-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#time-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTimeElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-time-datetime" title="dom-time-datetime">dateTime</a>; + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-time-pubdate" title="dom-time-pubDate">pubDate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-time-valueasdate" title="dom-time-valueAsDate">valueAsDate</a>; +};</pre> </div> </div> <div id="title" class="section"> @@ -16828,9 +16954,9 @@ <div class="no-number no-toc" id="title-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#title-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTitleElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-title-text" title="dom-title-text">text</a>; +};</pre> </div> <div class="no-number no-toc" id="title-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#title-display">#</a> @@ -16921,9 +17047,13 @@ <div class="no-number no-toc" id="tr-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#tr-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLTableRowElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-tr-rowindex" title="dom-tr-rowIndex">rowIndex</a>; + readonly attribute long <a href="http://dev.w3.org/html5/spec/#dom-tr-sectionrowindex" title="dom-tr-sectionRowIndex">sectionRowIndex</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tr-cells" title="dom-tr-cells">cells</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tr-insertcell" title="dom-tr-insertCell">insertCell</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tr-deletecell" title="dom-tr-deleteCell">deleteCell</a>(in long index); +};</pre> </div> <div class="no-number no-toc" id="tr-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tr-display">#</a> @@ -17007,9 +17137,7 @@ <div class="no-number no-toc" id="ul-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#ul-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLUListElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre> </div> <div class="no-number no-toc" id="ul-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#ul-display">#</a> @@ -17244,9 +17372,13 @@ <div class="no-number no-toc" id="video-interface"> <h2 class="element-subhead">DOM interface <a class="hash" href="#video-interface">#</a> </h2> -<p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p> +<pre class="idl">interface <b>HTMLVideoElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlmediaelement" title="">HTMLMediaElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-width" title="dom-dim-width">width</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-height" title="dom-dim-height">height</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-video-videowidth" title="dom-video-videoWidth">videoWidth</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-video-videoheight" title="dom-video-videoHeight">videoHeight</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-video-poster" title="dom-video-poster">poster</a>; +};</pre> </div> </div> </div> Index: optgroup.html =================================================================== RCS file: /sources/public/html5/markup/optgroup.html,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- optgroup.html 12 Feb 2010 04:52:26 -0000 1.35 +++ optgroup.html 12 Feb 2010 10:33:49 -0000 1.36 @@ -58,9 +58,10 @@ <p class="permitted-parents"><span class="context-mdl"><a href="select.html#select">select</a></span></p> </div> <div class="no-number no-toc" id="optgroup-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#optgroup-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#optgroup-interface">#</a></h2><pre class="idl">interface <b>HTMLOptGroupElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-optgroup-disabled" title="dom-optgroup-disabled">disabled</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-optgroup-label" title="dom-optgroup-label">label</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="ol.html">« ol</a></span> Index: ol.html =================================================================== RCS file: /sources/public/html5/markup/ol.html,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- ol.html 12 Feb 2010 04:52:26 -0000 1.39 +++ ol.html 12 Feb 2010 10:33:49 -0000 1.40 @@ -84,9 +84,10 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="ol-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#ol-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#ol-interface">#</a></h2><pre class="idl">interface <b>HTMLOListElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-ol-reversed" title="dom-ol-reversed">reversed</a>; + attribute long <a href="http://dev.w3.org/html5/spec/#dom-ol-start" title="dom-ol-start">start</a>; +};</pre></div> <div class="no-number no-toc" id="ol-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#ol-display">#</a></h2> <div class="css-props" id="ol-css"><div class="selectors"><span class="selector">ol</span> { Index: thead.html =================================================================== RCS file: /sources/public/html5/markup/thead.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- thead.html 12 Feb 2010 04:52:27 -0000 1.34 +++ thead.html 12 Feb 2010 10:33:49 -0000 1.35 @@ -69,9 +69,11 @@ <p class="permitted-parents"><span class="context-mdl"><a href="table.html#table">table</a></span></p> </div> <div class="no-number no-toc" id="thead-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#thead-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#thead-interface">#</a></h2><pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre></div> <div class="no-number no-toc" id="thead-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#thead-display">#</a></h2> <div class="css-props" id="thead-css"><div class="selectors"><span class="selector">thead</span> { Index: tbody.html =================================================================== RCS file: /sources/public/html5/markup/tbody.html,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- tbody.html 12 Feb 2010 04:52:27 -0000 1.34 +++ tbody.html 12 Feb 2010 10:33:49 -0000 1.35 @@ -71,9 +71,11 @@ <p class="permitted-parents"><span class="context-mdl"><a href="table.html#table">table</a></span></p> </div> <div class="no-number no-toc" id="tbody-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#tbody-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#tbody-interface">#</a></h2><pre class="idl">interface <b>HTMLTableSectionElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlcollection" title="">HTMLCollection</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-rows" title="dom-tbody-rows">rows</a>; + <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> <a href="http://dev.w3.org/html5/spec/#dom-tbody-insertrow" title="dom-tbody-insertRow">insertRow</a>(in optional long index); + void <a href="http://dev.w3.org/html5/spec/#dom-tbody-deleterow" title="dom-tbody-deleteRow">deleteRow</a>(in long index); +};</pre></div> <div class="no-number no-toc" id="tbody-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#tbody-display">#</a></h2> <div class="css-props" id="tbody-css"><div class="selectors"><span class="selector">tbody</span> { Index: video.html =================================================================== RCS file: /sources/public/html5/markup/video.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- video.html 12 Feb 2010 04:52:27 -0000 1.46 +++ video.html 12 Feb 2010 10:33:50 -0000 1.47 @@ -130,9 +130,13 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="video-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#video-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#video-interface">#</a></h2><pre class="idl">interface <b>HTMLVideoElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlmediaelement" title="">HTMLMediaElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-width" title="dom-dim-width">width</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-dim-height" title="dom-dim-height">height</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-video-videowidth" title="dom-video-videoWidth">videoWidth</a>; + readonly attribute unsigned long <a href="http://dev.w3.org/html5/spec/#dom-video-videoheight" title="dom-video-videoHeight">videoHeight</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-video-poster" title="dom-video-poster">poster</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="var.html">« var</a></span> Index: source.html =================================================================== RCS file: /sources/public/html5/markup/source.html,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- source.html 12 Feb 2010 04:52:26 -0000 1.46 +++ source.html 12 Feb 2010 10:33:49 -0000 1.47 @@ -85,9 +85,11 @@ element is a complete set of media data — for example, a complete video file, or a complete audio file).</p> </div></div><div class="no-number no-toc" id="source-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#source-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#source-interface">#</a></h2><pre class="idl">interface <b>HTMLSourceElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-src" title="dom-source-src">src</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-type" title="dom-source-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-source-media" title="dom-source-media">media</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="small.html">« small</a></span> Index: output.html =================================================================== RCS file: /sources/public/html5/markup/output.html,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- output.html 12 Feb 2010 04:52:26 -0000 1.42 +++ output.html 12 Feb 2010 10:33:49 -0000 1.43 @@ -59,9 +59,23 @@ <a href="common-models.html#common.elem.phrasing">phrasing elements</a></span></span></p> </div> <div class="no-number no-toc" id="output-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#output-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#output-interface">#</a></h2><pre class="idl">interface <b>HTMLOutputElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + [PutForwards=<a href="http://dev.w3.org/html5/spec/#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="http://dev.w3.org/html5/spec/#domsettabletokenlist" title="">DOMSettableTokenList</a> ; + readonly attribute <a href="http://dev.w3.org/html5/spec/#htmlformelement" title="">HTMLFormElement</a> <a href="http://dev.w3.org/html5/spec/#dom-fae-form" title="dom-fae-form">form</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-fe-name" title="dom-fe-name">name</a>; + + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-type" title="dom-output-type">type</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-defaultvalue" title="dom-output-defaultValue">defaultValue</a>; + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-output-value" title="dom-output-value">value</a>; + + readonly attribute boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-willvalidate" title="dom-cva-willValidate">willValidate</a>; + readonly attribute <a href="http://dev.w3.org/html5/spec/#validitystate" title="">ValidityState</a> <a href="http://dev.w3.org/html5/spec/#dom-cva-validity" title="dom-cva-validity">validity</a>; + readonly attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-cva-validationmessage" title="dom-cva-validationMessage">validationMessage</a>; + boolean <a href="http://dev.w3.org/html5/spec/#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); + void <a href="http://dev.w3.org/html5/spec/#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); + + readonly attribute <a href="http://dev.w3.org/html5/spec/#dom-lfe-labels" title="dom-lfe-labels">labels</a>; +};</pre></div></div> <hr class="footerbreak"></hr> <div class="nav"> <span class="nav-prev"><a href="option.html">« option</a></span> Index: title.html =================================================================== RCS file: /sources/public/html5/markup/title.html,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- title.html 12 Feb 2010 04:52:27 -0000 1.35 +++ title.html 12 Feb 2010 10:33:50 -0000 1.36 @@ -44,9 +44,9 @@ <p class="permitted-parents"><span class="context-mdl"><a href="head.html#head">head</a></span></p> </div> <div class="no-number no-toc" id="title-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#title-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#title-interface">#</a></h2><pre class="idl">interface <b>HTMLTitleElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> { + attribute DOMString <a href="http://dev.w3.org/html5/spec/#dom-title-text" title="dom-title-text">text</a>; +};</pre></div> <div class="no-number no-toc" id="title-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#title-display">#</a></h2> <div class="css-props" id="title-css"><div class="selectors"><span class="selector">title</span> { Index: pre.html =================================================================== RCS file: /sources/public/html5/markup/pre.html,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- pre.html 12 Feb 2010 04:52:26 -0000 1.38 +++ pre.html 12 Feb 2010 10:33:49 -0000 1.39 @@ -56,9 +56,7 @@ <a href="common-models.html#common.elem.flow">flow elements</a></span></span></p> </div> <div class="no-number no-toc" id="pre-interface"> - <h2 class="element-subhead">DOM interface <a class="hash" href="#pre-interface">#</a></h2><p class="dom-interface">Uses - <a href="http://dev.w3.org/html5/spec/#htmlelement" title="HTMLElement">HTMLElement</a>. - </p></div> + <h2 class="element-subhead">DOM interface <a class="hash" href="#pre-interface">#</a></h2><pre class="idl">interface <b>HTMLPreElement</b> : <a href="http://dev.w3.org/html5/spec/#htmlelement" title="">HTMLElement</a> {};</pre></div> <div class="no-number no-toc" id="pre-display"> <h2 class="element-subhead">Typical default display properties <a class="hash" href="#pre-display">#</a></h2> <div class="css-props" id="pre-css"><div class="selectors"><span class="selector">pre</span> {
Received on Friday, 12 February 2010 10:33:57 UTC