Skip to content

Commit

Permalink
[e] (0) minor editorial fixes
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3848 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 14, 2009
1 parent 50556ec commit 06b9eb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index
Expand Up @@ -42015,7 +42015,7 @@ interface <dfn>DataGridListener</dfn> {
&lt;menu label="File"&gt;
&lt;button type="button" onclick="fnew()"&gt;New...&lt;/button&gt;
&lt;button type="button" onclick="fopen()"&gt;Open...&lt;/button&gt;
&lt;button type="button" onclick="fsave()" id="save"&gt;Save&lt;/button&gt;
&lt;button type="button" onclick="fsave()"&gt;Save&lt;/button&gt;
&lt;button type="button" onclick="fsaveas()"&gt;Save as...&lt;/button&gt;
&lt;/menu&gt;
&lt;/li&gt;
Expand Down Expand Up @@ -42434,15 +42434,15 @@ interface <dfn>DataGridListener</dfn> {
the command is disabled, and false if the command is not
disabled. This attribute is not affected by the command's <a href=#command-facet-hiddenstate title=command-facet-HiddenState>Hidden State</a>. If the
element does not define a command, the attribute must return
false. This attribute will be shadowed by the <code title="">disabled</code> attribute on <code><a href=#the-button-element>button</a></code>,
false. This attribute will be shadowed by the <code title="">disabled</code> IDL attribute on <code><a href=#the-button-element>button</a></code>,
<code><a href=#the-input-element>input</a></code>, <code><a href=#the-option-element>option</a></code>, and <code><a href=#the-command>command</a></code>
elements.</p>

<p>The <dfn id=dom-command-ro-checked title=dom-command-ro-checked><code>checked</code></dfn> attribute
must return true if the command's <a href=#command-facet-checkedstate title=command-facet-CheckedState>Checked State</a> is that the
command is checked, and false if it is that the command is not
checked. If the element does not define a command, the attribute
must return false. This attribute will be shadowed by the <code title="">checked</code> attribute on <code><a href=#the-input-element>input</a></code> and
must return false. This attribute will be shadowed by the <code title="">checked</code> IDL attribute on <code><a href=#the-input-element>input</a></code> and
<code><a href=#the-command>command</a></code> elements.</p>

<!--v2COMMAND
Expand Down
6 changes: 3 additions & 3 deletions source
Expand Up @@ -46835,7 +46835,7 @@ interface <dfn>DataGridListener</dfn> {
&lt;menu label="File"&gt;
&lt;button type="button" onclick="fnew()"&gt;New...&lt;/button&gt;
&lt;button type="button" onclick="fopen()"&gt;Open...&lt;/button&gt;
&lt;button type="button" onclick="fsave()" id="save"&gt;Save&lt;/button&gt;
&lt;button type="button" onclick="fsave()"&gt;Save&lt;/button&gt;
&lt;button type="button" onclick="fsaveas()"&gt;Save as...&lt;/button&gt;
&lt;/menu&gt;
&lt;/li&gt;
Expand Down Expand Up @@ -47299,7 +47299,7 @@ interface <dfn>DataGridListener</dfn> {
title="command-facet-HiddenState">Hidden State</span>. If the
element does not define a command, the attribute must return
false. This attribute will be shadowed by the <code
title="">disabled</code> attribute on <code>button</code>,
title="">disabled</code> IDL attribute on <code>button</code>,
<code>input</code>, <code>option</code>, and <code>command</code>
elements.</p>

Expand All @@ -47310,7 +47310,7 @@ interface <dfn>DataGridListener</dfn> {
command is checked, and false if it is that the command is not
checked. If the element does not define a command, the attribute
must return false. This attribute will be shadowed by the <code
title="">checked</code> attribute on <code>input</code> and
title="">checked</code> IDL attribute on <code>input</code> and
<code>command</code> elements.</p>

<!--v2COMMAND
Expand Down

0 comments on commit 06b9eb4

Please sign in to comment.