hixie: <fieldset disabled> shouldn't disable the fieldset's legend's form controls. (whatwg r3922)

hixie: <fieldset disabled> shouldn't disable the fieldset's legend's
form controls. (whatwg r3922)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3083&r2=1.3084&f=h
http://html5.org/tools/web-apps-tracker?from=3921&to=3922

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3083
retrieving revision 1.3084
diff -u -d -r1.3083 -r1.3084
--- Overview.html 20 Sep 2009 20:52:33 -0000 1.3083
+++ Overview.html 21 Sep 2009 09:08:42 -0000 1.3084
@@ -215,7 +215,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">W3C Working Draft 25 August 2009</h2>-->
-   <h2 class="no-num no-toc" id="editor-s-draft-20-september-2009">Editor's Draft 20 September 2009</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-21-september-2009">Editor's Draft 21 September 2009</h2>
    <!--:ZZZ-->
    <dl><!-- ZZZ: update the month/day (twice), (un)comment out--><!--
     <dt>This Version:</dt>
@@ -317,7 +317,7 @@
   track.
   <!--ZZZ:-->
   <!--This specification is the 25 August 2009 Working Draft.-->
-  This specification is the 20 September 2009 Editor's Draft.
+  This specification is the 21 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)
@@ -27201,12 +27201,14 @@
   void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error);
 };</pre>
    </dd>
-  </dl><p>The <code><a href="#the-fieldset-element">fieldset</a></code> element <a href="#represents">represents</a> a set of form
-  controls grouped under a common name.<p>The name of the group is given by the first <code><a href="#the-legend-element">legend</a></code>
+  </dl><p>The <code><a href="#the-fieldset-element">fieldset</a></code> element <a href="#represents">represents</a> a set
+  of form controls grouped under a common name.<p>The name of the group is given by the first <code><a href="#the-legend-element">legend</a></code>
   element that is a child of the <code><a href="#the-fieldset-element">fieldset</a></code> element. The
   remainder of the descendants form the group.<p>The <dfn id="attr-fieldset-disabled" title="attr-fieldset-disabled"><code>disabled</code></dfn>
   attribute, when specified, causes all the form control descendants
-  of the <code><a href="#the-fieldset-element">fieldset</a></code> element to be <a href="#concept-fe-disabled" title="concept-fe-disabled">disabled</a>.<p>The <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute is used to
+  of the <code><a href="#the-fieldset-element">fieldset</a></code> element, excluding those that are
+  descendants of the <code><a href="#the-fieldset-element">fieldset</a></code> element's first
+  <code><a href="#the-legend-element">legend</a></code> element child, if any, to be <a href="#concept-fe-disabled" title="concept-fe-disabled">disabled</a>.<p>The <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute is used to
   explicitly associate the <code><a href="#the-fieldset-element">fieldset</a></code> element with its
   <a href="#form-owner">form owner</a>. The <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code>
   attribute represents the element's name.<dl class="domintro"><dt><var title="">fieldset</var> . <code title="dom-fieldset-type"><a href="#dom-fieldset-type">type</a></code></dt>
@@ -33397,7 +33399,9 @@
   if its <code title="attr-fe-disabled"><a href="#attr-fe-disabled">disabled</a></code> attribute is
   set, or if it is a descendant of a <code><a href="#the-fieldset-element">fieldset</a></code> element
   whose <code title="attr-fieldset-disabled"><a href="#attr-fieldset-disabled">disabled</a></code> attribute
-  is set.<div class="impl">
+  is set and is <em>not</em> a descendant of that
+  <code><a href="#the-fieldset-element">fieldset</a></code> element's first <code><a href="#the-legend-element">legend</a></code> element
+  child, if any.<div class="impl">
 
   <p>A form control that is <a href="#concept-fe-disabled" title="concept-fe-disabled">disabled</a> must prevent any <code title="event-click">click</code> events that are <a href="#queue-a-task" title="queue
   a task">queued</a> on the <a href="#user-interaction-task-source">user interaction task

Received on Monday, 21 September 2009 09:09:57 UTC