- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 01 Sep 2009 23:55:44 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv14785
Modified Files:
Overview.html
Log Message:
Fix some case issues in the form DOM APIs. (whatwg r3724)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2900
retrieving revision 1.2901
diff -u -d -r1.2900 -r1.2901
--- Overview.html 31 Aug 2009 09:14:17 -0000 1.2900
+++ Overview.html 1 Sep 2009 23:55:41 -0000 1.2901
@@ -174,7 +174,7 @@
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
<!--ZZZ:-->
<h2 class="no-num no-toc" id="w3c-working-draft-25-august-2009">W3C Working Draft 25 August 2009</h2>
- <!--<h2 class="no-num no-toc">Editor's Draft 31 August 2009</h2>-->
+ <!--<h2 class="no-num no-toc">Editor's Draft 1 September 2009</h2>-->
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out--><dt>This Version:</dt>
<dd><a href="http://www.w3.org/TR/2009/WD-html5-20090825/">http://www.w3.org/TR/2009/WD-html5-20090825/</a></dd>
@@ -272,7 +272,7 @@
track.
<!--ZZZ:-->
This specification is the 25 August 2009 Working Draft.
- <!--This specification is the 31 August 2009 Editor's Draft.-->
+ <!--This specification is the 1 September 2009 Editor's Draft.-->
<!--:ZZZ-->
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are
identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of)
@@ -26148,7 +26148,7 @@
attribute DOMString <a href="#dom-fs-enctype" title="dom-fs-enctype">enctype</a>;
attribute DOMString <a href="#dom-fs-method" title="dom-fs-method">method</a>;
attribute DOMString <a href="#dom-form-name" title="dom-form-name">name</a>;
- attribute boolean <a href="#dom-fs-novalidate" title="dom-fs-novalidate">novalidate</a>;
+ attribute boolean <a href="#dom-fs-novalidate" title="dom-fs-noValidate">noValidate</a>;
attribute DOMString <a href="#dom-fs-target" title="dom-fs-target">target</a>;
readonly attribute <a href="#htmlformcontrolscollection">HTMLFormControlsCollection</a> <a href="#dom-form-elements" title="dom-form-elements">elements</a>;
@@ -30843,11 +30843,11 @@
attribute boolean <a href="#dom-fe-autofocus" title="dom-fe-autofocus">autofocus</a>;
attribute boolean <a href="#dom-fe-disabled" title="dom-fe-disabled">disabled</a>;
readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <a href="#dom-fae-form" title="dom-fae-form">form</a>;
- attribute DOMString <a href="#dom-fs-formaction" title="dom-fs-formaction">formaction</a>;
- attribute DOMString <a href="#dom-fs-formenctype" title="dom-fs-formenctype">formenctype</a>;
- attribute DOMString <a href="#dom-fs-formmethod" title="dom-fs-formmethod">formmethod</a>;
- attribute DOMString <a href="#dom-fs-formnovalidate" title="dom-fs-formnoValidate">formnoValidate</a>;
- attribute DOMString <a href="#dom-fs-formtarget" title="dom-fs-formtarget">formtarget</a>;
+ attribute DOMString <a href="#dom-fs-formaction" title="dom-fs-formAction">formAction</a>;
+ attribute DOMString <a href="#dom-fs-formenctype" title="dom-fs-formEnctype">formEnctype</a>;
+ attribute DOMString <a href="#dom-fs-formmethod" title="dom-fs-formMethod">formMethod</a>;
+ attribute DOMString <a href="#dom-fs-formnovalidate" title="dom-fs-formNoValidate">formNoValidate</a>;
+ attribute DOMString <a href="#dom-fs-formtarget" title="dom-fs-formTarget">formTarget</a>;
attribute DOMString <a href="#dom-fe-name" title="dom-fe-name">name</a>;
attribute DOMString <a href="#dom-button-type" title="dom-button-type">type</a>;
attribute DOMString <a href="#dom-button-value" title="dom-button-value">value</a>;
@@ -32478,7 +32478,7 @@
The <dfn id="dom-fs-formmethod" title="dom-fs-formMethod"><code>formMethod</code></dfn> IDL
attribute must reflect the <code title="attr-fs-formmethod"><a href="#attr-fs-formmethod">formmethod</a></code> content attribute. The
<dfn id="dom-fs-formnovalidate" title="dom-fs-formNoValidate"><code>formNoValidate</code></dfn>
- IDL attribute must reflect the <code title="attr-fs-formnovalidate"><a href="#attr-fs-formnovalidate">formnovalidate</a></code> content
+ IDL attribute must reflect the <code title="attr-fs-formNoValidate"><a href="#attr-fs-formnovalidate">formNoValidate</a></code> content
attribute. The <dfn id="dom-fs-formtarget" title="dom-fs-formTarget"><code>formTarget</code></dfn> IDL
attribute must reflect the <code title="attr-fs-formtarget"><a href="#attr-fs-formtarget">formtarget</a></code> content attribute.
Received on Tuesday, 1 September 2009 23:55:53 UTC