Skip to content

Commit

Permalink
[e] (0) Move prose into WebIDL
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=21415
Affected topics: DOM APIs

git-svn-id: http://svn.whatwg.org/webapps@7778 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Mar 28, 2013
1 parent d79df22 commit ec57a28
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions complete.html
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 27 March 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 28 March 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -44424,8 +44424,8 @@ <h4 id=the-input-element><span class=secno>4.10.7 </span>The <dfn><code>input</c
attribute unrestricted double <a href=#dom-input-valueasnumber title=dom-input-valueAsNumber>valueAsNumber</a>;
attribute unsigned long <a href=#dom-input-width title=dom-input-width>width</a>;

void <a href=#dom-input-stepup title=dom-input-stepUp>stepUp</a>(optional long n);
void <a href=#dom-input-stepdown title=dom-input-stepDown>stepDown</a>(optional long n);
void <a href=#dom-input-stepup title=dom-input-stepUp>stepUp</a>(optional long n = 1);
void <a href=#dom-input-stepdown title=dom-input-stepDown>stepDown</a>(optional long n = 1);

readonly attribute boolean <a href=#dom-cva-willvalidate title=dom-cva-willValidate>willValidate</a>;
readonly attribute <a href=#validitystate>ValidityState</a> <a href=#dom-cva-validity title=dom-cva-validity>validity</a>;
Expand Down Expand Up @@ -49679,7 +49679,7 @@ <h5 id=common-input-element-apis><span class=secno>4.10.7.4 </span>Common <code>

<p>Otherwise (<var title="">value</var> subtracted from the <a href=#concept-input-min-zero title=concept-input-min-zero>step base</a> is an integral multiple of the <a href=#concept-input-step title=concept-input-step>allowed value step</a>), run the following substeps:</p>

<ol><li><p>Let <var title="">n</var> be the argument, or 1 if the argument was omitted.</li>
<ol><li><p>Let <var title="">n</var> be the argument.</li>

<li><p>Let <var title="">delta</var> be the <a href=#concept-input-step title=concept-input-step>allowed value
step</a> multiplied by <var title="">n</var>.</li>
Expand Down
8 changes: 4 additions & 4 deletions index
Expand Up @@ -248,7 +248,7 @@

<header class=head id=head><p><a class=logo href=http://www.whatwg.org/><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 27 March 2013</h2>
<h2 class="no-num no-toc">Living Standard &mdash; Last Updated 28 March 2013</h2>
</hgroup><dl><dt><strong>Web developer edition:</strong></dt>
<dd><strong><a href=http://developers.whatwg.org/>http://developers.whatwg.org/</a></strong></dd>
<dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -44424,8 +44424,8 @@ interface <dfn id=htmlformelement>HTMLFormElement</dfn> : <a href=#htmlelement>H
attribute unrestricted double <a href=#dom-input-valueasnumber title=dom-input-valueAsNumber>valueAsNumber</a>;
attribute unsigned long <a href=#dom-input-width title=dom-input-width>width</a>;

void <a href=#dom-input-stepup title=dom-input-stepUp>stepUp</a>(optional long n);
void <a href=#dom-input-stepdown title=dom-input-stepDown>stepDown</a>(optional long n);
void <a href=#dom-input-stepup title=dom-input-stepUp>stepUp</a>(optional long n = 1);
void <a href=#dom-input-stepdown title=dom-input-stepDown>stepDown</a>(optional long n = 1);

readonly attribute boolean <a href=#dom-cva-willvalidate title=dom-cva-willValidate>willValidate</a>;
readonly attribute <a href=#validitystate>ValidityState</a> <a href=#dom-cva-validity title=dom-cva-validity>validity</a>;
Expand Down Expand Up @@ -49679,7 +49679,7 @@ You cannot submit this form when the field is incorrect.</samp></pre>

<p>Otherwise (<var title="">value</var> subtracted from the <a href=#concept-input-min-zero title=concept-input-min-zero>step base</a> is an integral multiple of the <a href=#concept-input-step title=concept-input-step>allowed value step</a>), run the following substeps:</p>

<ol><li><p>Let <var title="">n</var> be the argument, or 1 if the argument was omitted.</li>
<ol><li><p>Let <var title="">n</var> be the argument.</li>

<li><p>Let <var title="">delta</var> be the <a href=#concept-input-step title=concept-input-step>allowed value
step</a> multiplied by <var title="">n</var>.</li>
Expand Down
6 changes: 3 additions & 3 deletions source
Expand Up @@ -53434,8 +53434,8 @@ interface <dfn>HTMLFormElement</dfn> : <span>HTMLElement</span> {
attribute unrestricted double <span title="dom-input-valueAsNumber">valueAsNumber</span>;
attribute unsigned long <span title="dom-input-width">width</span>;

void <span title="dom-input-stepUp">stepUp</span>(optional long n);
void <span title="dom-input-stepDown">stepDown</span>(optional long n);
void <span title="dom-input-stepUp">stepUp</span>(optional long n = 1);
void <span title="dom-input-stepDown">stepDown</span>(optional long n = 1);

readonly attribute boolean <span title="dom-cva-willValidate">willValidate</span>;
readonly attribute <span>ValidityState</span> <span title="dom-cva-validity">validity</span>;
Expand Down Expand Up @@ -59270,7 +59270,7 @@ You cannot submit this form when the field is incorrect.</samp></pre>

<ol>

<li><p>Let <var title="">n</var> be the argument, or 1 if the argument was omitted.</p></li>
<li><p>Let <var title="">n</var> be the argument.</p></li>

<li><p>Let <var title="">delta</var> be the <span title="concept-input-step">allowed value
step</span> multiplied by <var title="">n</var>.</p></li>
Expand Down

0 comments on commit ec57a28

Please sign in to comment.