Skip to content

Commit

Permalink
[] (0) WF2: Hook up some of the form submission attributes.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2174 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 13, 2008
1 parent bca075f commit f186dcd
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
36 changes: 18 additions & 18 deletions index
Expand Up @@ -26635,8 +26635,8 @@ function AddCloud(data, x, y) { ... }</pre>
<p>The <code title=attr-fs-action><a href="#action">action</a></code>,
<code title=attr-fs-enctype><a href="#enctype">enctype</a></code>, <code
title=attr-fs-method><a href="#method">method</a></code>, and <code
title=attr-fs-target><a href="#target3">target</a></code> are <a
href="#attributes5">attributes for form submission</a>.
title=attr-fs-target><a href="#target3">target</a></code> attributes are
<a href="#attributes5">attributes for form submission</a>.

<p>The <dfn id=accept-charset0
title=dom-form-accept-charset><code>accept-charset</code></dfn> and <dfn
Expand Down Expand Up @@ -26777,7 +26777,7 @@ function AddCloud(data, x, y) { ... }</pre>

<dd><code title=attr-input-accept>accept</code>

<dd><code title=attr-input-action>action</code>
<dd><code title=attr-fs-action><a href="#action">action</a></code>

<dd><code title=attr-input-alt>alt</code>

Expand All @@ -26789,7 +26789,7 @@ function AddCloud(data, x, y) { ... }</pre>

<dd><code title=attr-fe-disabled><a href="#disabled3">disabled</a></code>

<dd><code title=attr-input-enctype>enctype</code>
<dd><code title=attr-fs-enctype><a href="#enctype">enctype</a></code>

<dd><code title=attr-fae-form><a href="#form0">form</a></code>

Expand All @@ -26801,7 +26801,7 @@ function AddCloud(data, x, y) { ... }</pre>

<dd><code title=attr-input-maxlength>maxlength</code>

<dd><code title=attr-input-method>method</code>
<dd><code title=attr-fs-method><a href="#method">method</a></code>

<dd><code title=attr-input-min>min</code>

Expand All @@ -26819,7 +26819,7 @@ function AddCloud(data, x, y) { ... }</pre>

<dd><code title=attr-input-step>step</code>

<dd><code title=attr-input-target>target</code>
<dd><code title=attr-fs-target><a href="#target3">target</a></code>

<dd><code title=attr-input-type>type</code>

Expand All @@ -26831,20 +26831,20 @@ function AddCloud(data, x, y) { ... }</pre>
<pre
class=idl>interface <dfn id=htmlinputelement>HTMLInputElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
attribute DOMString <span title=dom-input-accept>accept</span>;
attribute DOMString <span title=dom-input-action>action</span>;
attribute DOMString <a href="#action0" title=dom-fs-action>action</a>;
attribute DOMString <span title=dom-input-alt>alt</span>;
attribute boolean <span title=dom-input-autocomplete>autocomplete</span>;
attribute boolean <span title=dom-input-autofocus>autofocus</span>;
attribute boolean <span title=dom-input-defaultChecked>defaultChecked</span>;
attribute boolean <span title=dom-input-checked>checked</span>;
attribute boolean <a href="#disabled4" title=dom-fe-disabled>disabled</a>;
attribute DOMString <span title=dom-input-enctype>enctype</span>;
attribute DOMString <a href="#enctype0" title=dom-fs-enctype>enctype</a>;
readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <a href="#form1" title=dom-fae-form>form</a>;
attribute DOMString <span title=dom-input-inputmode>inputmode</span>;
readonly attribute <a href="#htmlelement">HTMLElement</a> <span title=dom-input-list>list</span>;
attribute DOMString <span title=dom-input-max>max</span>;
attribute long <span title=dom-input-maxLength>maxLength</span>;
attribute DOMString <span title=dom-input-method>method</span>;
attribute DOMString <a href="#method0" title=dom-fs-method>method</a>;
attribute DOMString <span title=dom-input-min>min</span>;
attribute DOMString <a href="#name12" title=dom-fe-name>name</a>;
attribute DOMString <span title=dom-input-pattern>pattern</span>;
Expand All @@ -26853,7 +26853,7 @@ function AddCloud(data, x, y) { ... }</pre>
attribute unsigned long <span title=dom-input-size>size</span>;
attribute DOMString <span title=dom-input-src>src</span>;
attribute DOMString <span title=dom-input-step>step</span>;
attribute DOMString <span title=dom-input-target>target</span>;
attribute DOMString <a href="#target4" title=dom-fs-target>target</a>;
attribute DOMString <span title=dom-input-type>type</span>;
attribute DOMString <span title=dom-input-defaultValue>defaultValue</span>;
attribute DOMString <span title=dom-input-value>value</span>;
Expand Down Expand Up @@ -26916,21 +26916,21 @@ function AddCloud(data, x, y) { ... }</pre>

<dt>Element-specific attributes:

<dd><code title=attr-button-action>action</code>
<dd><code title=attr-fs-action><a href="#action">action</a></code>

<dd><code title=attr-button-autofocus>autofocus</code>

<dd><code title=attr-fe-disabled><a href="#disabled3">disabled</a></code>

<dd><code title=attr-button-enctype>enctype</code>
<dd><code title=attr-fs-enctype><a href="#enctype">enctype</a></code>

<dd><code title=attr-fae-form><a href="#form0">form</a></code>

<dd><code title=attr-button-method>method</code>
<dd><code title=attr-fs-method><a href="#method">method</a></code>

<dd><code title=attr-fe-name><a href="#name11">name</a></code>

<dd><code title=attr-button-target>target</code>
<dd><code title=attr-fs-target><a href="#target3">target</a></code>

<dd><code title=attr-button-type>type</code>

Expand All @@ -26941,14 +26941,14 @@ function AddCloud(data, x, y) { ... }</pre>
<dd>
<pre
class=idl>interface <dfn id=htmlbuttonelement>HTMLButtonElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
attribute DOMString <span title=dom-button-action>action</span>;
attribute DOMString <a href="#action0" title=dom-fs-action>action</a>;
attribute boolean <span title=dom-button-autofocus>autofocus</span>;
attribute boolean <a href="#disabled4" title=dom-fe-disabled>disabled</a>;
attribute DOMString <span title=dom-button-enctype>enctype</span>;
attribute DOMString <a href="#enctype0" title=dom-fs-enctype>enctype</a>;
readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <a href="#form1" title=dom-fae-form>form</a>;
attribute DOMString <span title=dom-button-method>method</span>;
attribute DOMString <a href="#method0" title=dom-fs-method>method</a>;
attribute DOMString <a href="#name12" title=dom-fe-name>name</a>;
attribute DOMString <span title=dom-button-target>target</span>;
attribute DOMString <a href="#target4" title=dom-fs-target>target</a>;
attribute DOMString <span title=dom-button-type>type</span>;
attribute DOMString <span title=dom-button-value>value</span>;

Expand Down
36 changes: 18 additions & 18 deletions source
Expand Up @@ -23990,8 +23990,8 @@ function AddCloud(data, x, y) { ... }</pre>
<p>The <code title="attr-fs-action">action</code>, <code
title="attr-fs-enctype">enctype</code>, <code
title="attr-fs-method">method</code>, and <code
title="attr-fs-target">target</code> are <span>attributes for form
submission</span>.</p>
title="attr-fs-target">target</code> attributes are <span>attributes
for form submission</span>.</p>

<p>The <dfn
title="dom-form-accept-charset"><code>accept-charset</code></dfn>
Expand Down Expand Up @@ -24099,19 +24099,19 @@ function AddCloud(data, x, y) { ... }</pre>
<dd>Empty.</dd>
<dt>Element-specific attributes:</dt>
<dd><code title="attr-input-accept">accept</code></dd>
<dd><code title="attr-input-action">action</code></dd>
<dd><code title="attr-fs-action">action</code></dd>
<dd><code title="attr-input-alt">alt</code></dd>
<dd><code title="attr-input-autocomplete">autocomplete</code></dd>
<dd><code title="attr-input-autofocus">autofocus</code></dd>
<dd><code title="attr-input-checked">checked</code></dd>
<dd><code title="attr-fe-disabled">disabled</code></dd>
<dd><code title="attr-input-enctype">enctype</code></dd>
<dd><code title="attr-fs-enctype">enctype</code></dd>
<dd><code title="attr-fae-form">form</code></dd>
<dd><code title="attr-input-inputmode">inputmode</code></dd>
<dd><code title="attr-input-list">list</code></dd>
<dd><code title="attr-input-max">max</code></dd>
<dd><code title="attr-input-maxlength">maxlength</code></dd>
<dd><code title="attr-input-method">method</code></dd>
<dd><code title="attr-fs-method">method</code></dd>
<dd><code title="attr-input-min">min</code></dd>
<dd><code title="attr-fe-name">name</code></dd>
<dd><code title="attr-input-pattern">pattern</code></dd>
Expand All @@ -24120,27 +24120,27 @@ function AddCloud(data, x, y) { ... }</pre>
<dd><code title="attr-input-size">size</code></dd>
<dd><code title="attr-input-src">src</code></dd>
<dd><code title="attr-input-step">step</code></dd>
<dd><code title="attr-input-target">target</code></dd>
<dd><code title="attr-fs-target">target</code></dd>
<dd><code title="attr-input-type">type</code></dd>
<dd><code title="attr-input-value">value</code></dd>
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn>HTMLInputElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-input-accept">accept</span>;
attribute DOMString <span title="dom-input-action">action</span>;
attribute DOMString <span title="dom-fs-action">action</span>;
attribute DOMString <span title="dom-input-alt">alt</span>;
attribute boolean <span title="dom-input-autocomplete">autocomplete</span>;
attribute boolean <span title="dom-input-autofocus">autofocus</span>;
attribute boolean <span title="dom-input-defaultChecked">defaultChecked</span>;
attribute boolean <span title="dom-input-checked">checked</span>;
attribute boolean <span title="dom-fe-disabled">disabled</span>;
attribute DOMString <span title="dom-input-enctype">enctype</span>;
attribute DOMString <span title="dom-fs-enctype">enctype</span>;
readonly attribute <span>HTMLFormElement</span> <span title="dom-fae-form">form</span>;
attribute DOMString <span title="dom-input-inputmode">inputmode</span>;
readonly attribute <span>HTMLElement</span> <span title="dom-input-list">list</span>;
attribute DOMString <span title="dom-input-max">max</span>;
attribute long <span title="dom-input-maxLength">maxLength</span>;
attribute DOMString <span title="dom-input-method">method</span>;
attribute DOMString <span title="dom-fs-method">method</span>;
attribute DOMString <span title="dom-input-min">min</span>;
attribute DOMString <span title="dom-fe-name">name</span>;
attribute DOMString <span title="dom-input-pattern">pattern</span>;
Expand All @@ -24149,7 +24149,7 @@ function AddCloud(data, x, y) { ... }</pre>
attribute unsigned long <span title="dom-input-size">size</span>;
attribute DOMString <span title="dom-input-src">src</span>;
attribute DOMString <span title="dom-input-step">step</span>;
attribute DOMString <span title="dom-input-target">target</span>;
attribute DOMString <span title="dom-fs-target">target</span>;
attribute DOMString <span title="dom-input-type">type</span>;
attribute DOMString <span title="dom-input-defaultValue">defaultValue</span>;
attribute DOMString <span title="dom-input-value">value</span>;
Expand Down Expand Up @@ -24198,27 +24198,27 @@ function AddCloud(data, x, y) { ... }</pre>
<dt>Content model:</dt>
<dd><span>Phrasing content</span>.</dd>
<dt>Element-specific attributes:</dt>
<dd><code title="attr-button-action">action</code></dd>
<dd><code title="attr-fs-action">action</code></dd>
<dd><code title="attr-button-autofocus">autofocus</code></dd>
<dd><code title="attr-fe-disabled">disabled</code></dd>
<dd><code title="attr-button-enctype">enctype</code></dd>
<dd><code title="attr-fs-enctype">enctype</code></dd>
<dd><code title="attr-fae-form">form</code></dd>
<dd><code title="attr-button-method">method</code></dd>
<dd><code title="attr-fs-method">method</code></dd>
<dd><code title="attr-fe-name">name</code></dd>
<dd><code title="attr-button-target">target</code></dd>
<dd><code title="attr-fs-target">target</code></dd>
<dd><code title="attr-button-type">type</code></dd>
<dd><code title="attr-button-value">value</code></dd>
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn>HTMLButtonElement</dfn> : <span>HTMLElement</span> {
attribute DOMString <span title="dom-button-action">action</span>;
attribute DOMString <span title="dom-fs-action">action</span>;
attribute boolean <span title="dom-button-autofocus">autofocus</span>;
attribute boolean <span title="dom-fe-disabled">disabled</span>;
attribute DOMString <span title="dom-button-enctype">enctype</span>;
attribute DOMString <span title="dom-fs-enctype">enctype</span>;
readonly attribute <span>HTMLFormElement</span> <span title="dom-fae-form">form</span>;
attribute DOMString <span title="dom-button-method">method</span>;
attribute DOMString <span title="dom-fs-method">method</span>;
attribute DOMString <span title="dom-fe-name">name</span>;
attribute DOMString <span title="dom-button-target">target</span>;
attribute DOMString <span title="dom-fs-target">target</span>;
attribute DOMString <span title="dom-button-type">type</span>;
attribute DOMString <span title="dom-button-value">value</span>;

Expand Down

0 comments on commit f186dcd

Please sign in to comment.