html5/spec-author-view Overview.html,1.1554,1.1555 number-state.html,1.573,1.574 spec.html,1.1684,1.1685 spec.preprocessed.html,1.536,1.537

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv3740

Modified Files:
	Overview.html number-state.html spec.html 
	spec.preprocessed.html 
Log Message:
Don't bother protecting structured cloning from a getter with infinite regression, since we can't protect it from a non-terminating getter anyway. Reverts part of r6185. (whatwg r6434)

[updated by splitter]


Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.1554
retrieving revision 1.1555
diff -u -d -r1.1554 -r1.1555
--- Overview.html	12 Aug 2011 20:57:54 -0000	1.1554
+++ Overview.html	12 Aug 2011 21:57:19 -0000	1.1555
@@ -361,7 +361,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5135.</p> 
+      This is revision 1.5137.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &copy; 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>&reg;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.1684
retrieving revision 1.1685
diff -u -d -r1.1684 -r1.1685
--- spec.html	12 Aug 2011 20:57:54 -0000	1.1684
+++ spec.html	12 Aug 2011 21:57:19 -0000	1.1685
@@ -362,7 +362,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5135.</p> 
+      This is revision 1.5137.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    © 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts
@@ -18790,7 +18790,10 @@
   or alternatively a button from which the user can submit the
   form. The element is a <a href="#concept-button" id="concept-button_1" title="concept-button">button</a>,
   specifically a <a href="#concept-submit-button" id="concept-submit-button_1" title="concept-submit-button">submit
-  button</a>.</p><hr><p>The image is given by the <dfn aria-haspopup="true" id="attr-input-src" role="button" tabindex="0"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src" id="src_69">src</a></code> attribute must be present, and
+  button</a>.</p><p class="note">The coordinate is sent to the server <a href="http://dev.w3.org/html5/spec/association-of-controls-and-forms.html#constructing-the-form-data-set" title='Read about this "during form submission" reference in the full HTML5 spec.' class="full-spec-link">during form submission</a>
+  by sending two entries for the element, derived from the name of the
+  control but with "<code title="">.x</code>" and "<code title="">.y</code>" appended to the name with the <var title="">x</var> and <var title="">y</var> components of the
+  coordinate respectively.</p><hr><p>The image is given by the <dfn aria-haspopup="true" id="attr-input-src" role="button" tabindex="0"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src" id="src_69">src</a></code> attribute must be present, and
   must contain a <a href="#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_11">valid non-empty URL potentially surrounded by
   spaces</a> referencing a non-interactive, optionally animated,
   image resource that is neither paged nor scripted.</p><p>The <dfn aria-haspopup="true" id="attr-input-alt" role="button" tabindex="0"><code>alt</code></dfn> attribute
@@ -18858,7 +18861,18 @@
   </div><p class="note">Many aspects of this state's behavior are similar to
   the behavior of the <code><a href="#the-img-element" id="img_30">img</a></code> element. Readers are encouraged
   to read that section, where many of the same requirements are
-  described in more detail.</p><h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn aria-haspopup="true" role="button" tabindex="0">Reset Button</dfn> state</h6><p>The <code><a href="#the-input-element" id="input_114">input</a></code> element <a href="http://dev.w3.org/html5/spec/rendering.html#represents" class="full-spec-link" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button
+  described in more detail.</p><div class="example">
+
+   <p>Take the following form:</p>
+
+   <pre>&lt;form action="process.cgi"&gt;
+ &lt;input type=image src=map.png name=where&gt;
+&lt;/form&gt;</pre>
+
+   <p>If the user clicked on the image at coordinate (127,40) then the
+   URL used to submit the form would be "<code title="">process.cgi?where.x=127&amp;where.y=40</code>".</p>
+
+  </div><h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn aria-haspopup="true" role="button" tabindex="0">Reset Button</dfn> state</h6><p>The <code><a href="#the-input-element" id="input_114">input</a></code> element <a href="http://dev.w3.org/html5/spec/rendering.html#represents" class="full-spec-link" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button
   that, when activated, resets the form.  The element is a <a href="#concept-button" id="concept-button_2" title="concept-button">button</a>.</p><div class="bookkeeping">
 
    <p>The <code title="dom-input-value"><a href="#dom-input-value">value</a></code> IDL attribute

Index: number-state.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/number-state.html,v
retrieving revision 1.573
retrieving revision 1.574
diff -u -d -r1.573 -r1.574
--- number-state.html	11 Aug 2011 22:57:11 -0000	1.573
+++ number-state.html	12 Aug 2011 21:57:19 -0000	1.574
@@ -943,7 +943,10 @@
   or alternatively a button from which the user can submit the
   form. The element is a <a href="forms.html#concept-button" id="concept-button_1" title="concept-button">button</a>,
   specifically a <a href="forms.html#concept-submit-button" id="concept-submit-button_1" title="concept-submit-button">submit
-  button</a>.<hr><p>The image is given by the <dfn aria-haspopup="true" id="attr-input-src" role="button" tabindex="0"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src" id="src_69">src</a></code> attribute must be present, and
+  button</a>.<p class="note">The coordinate is sent to the server <a class="full-spec-link" href="http://dev.w3.org/html5/spec/association-of-controls-and-forms.html#constructing-the-form-data-set" title='Read about this "during form submission" reference in the full HTML5 spec.'>during form submission</a>
+  by sending two entries for the element, derived from the name of the
+  control but with "<code title="">.x</code>" and "<code title="">.y</code>" appended to the name with the <var title="">x</var> and <var title="">y</var> components of the
+  coordinate respectively.<hr><p>The image is given by the <dfn aria-haspopup="true" id="attr-input-src" role="button" tabindex="0"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src" id="src_69">src</a></code> attribute must be present, and
   must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_11">valid non-empty URL potentially surrounded by
   spaces</a> referencing a non-interactive, optionally animated,
   image resource that is neither paged nor scripted.<p>The <dfn aria-haspopup="true" id="attr-input-alt" role="button" tabindex="0"><code>alt</code></dfn> attribute
@@ -1011,7 +1014,18 @@
   </div><p class="note">Many aspects of this state's behavior are similar to
   the behavior of the <code><a href="the-img-element.html#the-img-element" id="img_30">img</a></code> element. Readers are encouraged
   to read that section, where many of the same requirements are
-  described in more detail.<h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn aria-haspopup="true" role="button" tabindex="0">Reset Button</dfn> state</h6><p>The <code><a href="the-input-element.html#the-input-element" id="input_114">input</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button
+  described in more detail.<div class="example">
+
+   <p>Take the following form:</p>
+
+   <pre>&lt;form action="process.cgi"&gt;
+ &lt;input type=image src=map.png name=where&gt;
+&lt;/form&gt;</pre>
+
+   <p>If the user clicked on the image at coordinate (127,40) then the
+   URL used to submit the form would be "<code title="">process.cgi?where.x=127&amp;where.y=40</code>".</p>
+
+  </div><h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn aria-haspopup="true" role="button" tabindex="0">Reset Button</dfn> state</h6><p>The <code><a href="the-input-element.html#the-input-element" id="input_114">input</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button
   that, when activated, resets the form.  The element is a <a href="forms.html#concept-button" id="concept-button_2" title="concept-button">button</a>.<div class="bookkeeping">
 
    <p>The <code title="dom-input-value"><a href="common-input-element-apis.html#dom-input-value">value</a></code> IDL attribute

Index: spec.preprocessed.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.preprocessed.html,v
retrieving revision 1.536
retrieving revision 1.537
diff -u -d -r1.536 -r1.537
--- spec.preprocessed.html	12 Aug 2011 20:58:00 -0000	1.536
+++ spec.preprocessed.html	12 Aug 2011 21:57:24 -0000	1.537
@@ -378,7 +378,7 @@
     <dt>Editor:</dt>
     <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd>
    </dl><p>This specification is available in the following formats: <a href="spec.html">single page HTML</a>, <a href="Overview.html">multipage HTML</a>, <a href="http://dev.w3.org/html5/spec/">full specification</a>.
-      This is revision 1.5135.</p> 
+      This is revision 1.5137.</p> 
      <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2011 <a href="http://www.w3.org/"><abbr title="World Wide
    Web Consortium">W3C</abbr></a><sup>&#174;</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts
@@ -18593,7 +18593,10 @@
   or alternatively a button from which the user can submit the
   form. The element is a <a href="#concept-button" title="concept-button">button</a>,
   specifically a <a href="#concept-submit-button" title="concept-submit-button">submit
-  button</a>.</p><hr><p>The image is given by the <dfn id="attr-input-src" role="button" tabindex="0" aria-haspopup="true"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src">src</a></code> attribute must be present, and
+  button</a>.</p><p class="note">The coordinate is sent to the server <a href="#constructing-the-form-data-set" title="constructing the form data set">during form submission</a>
+  by sending two entries for the element, derived from the name of the
+  control but with "<code title="">.x</code>" and "<code title="">.y</code>" appended to the name with the <var title="">x</var> and <var title="">y</var> components of the
+  coordinate respectively.</p><hr><p>The image is given by the <dfn id="attr-input-src" role="button" tabindex="0" aria-haspopup="true"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src">src</a></code> attribute must be present, and
   must contain a <a href="#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
   spaces</a> referencing a non-interactive, optionally animated,
   image resource that is neither paged nor scripted.</p><p>The <dfn id="attr-input-alt" role="button" tabindex="0" aria-haspopup="true"><code>alt</code></dfn> attribute
@@ -18661,7 +18664,18 @@
   </div><p class="note">Many aspects of this state's behavior are similar to
   the behavior of the <code><a href="#the-img-element">img</a></code> element. Readers are encouraged
   to read that section, where many of the same requirements are
-  described in more detail.</p><h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn role="button" tabindex="0" aria-haspopup="true">Reset Button</dfn> state</h6><p>The <code><a href="#the-input-element">input</a></code> element <a href="#represents">represents</a> a button
+  described in more detail.</p><div class="example">
+
+   <p>Take the following form:</p>
+
+   <pre>&lt;form action="process.cgi"&gt;
+ &lt;input type=image src=map.png name=where&gt;
+&lt;/form&gt;</pre>
+
+   <p>If the user clicked on the image at coordinate (127,40) then the
+   URL used to submit the form would be "<code title="">process.cgi?where.x=127&amp;where.y=40</code>".</p>
+
+  </div><h6 id="reset-button-state"><span class="secno">4.10.7.1.21 </span><dfn role="button" tabindex="0" aria-haspopup="true">Reset Button</dfn> state</h6><p>The <code><a href="#the-input-element">input</a></code> element <a href="#represents">represents</a> a button
   that, when activated, resets the form. <span class="impl">If the
   element has a <code title="attr-input-value"><a href="#attr-input-value">value</a></code> attribute,
   the button's label must be the value of that attribute; otherwise,

Received on Friday, 12 August 2011 21:57:31 UTC