Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[] (0) Make the accesskey attribute work when tabindex is set also. (…
…bug 7190)

git-svn-id: http://svn.whatwg.org/webapps@3771 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 9, 2009
1 parent 71f4043 commit 5b1605f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 22 deletions.
24 changes: 13 additions & 11 deletions index
Expand Up @@ -71,7 +71,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML5</h1>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-8-september-2009>Draft Standard &mdash; 8 September 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-9-september-2009>Draft Standard &mdash; 9 September 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -41724,17 +41724,19 @@ interface <dfn>DataGridListener</dfn> {
of the command is always false. (The command is never checked.)</p>

<p>The <a href=#command-facet-action title=command-facet-Action>Action</a> of the
command, if the element has a defined <a href=#activation-behavior>activation
behavior</a>, is to <a href=#run-synthetic-click-activation-steps>run synthetic click activation
steps</a> on the element. Otherwise, if the element is
<a href=#focusable>focusable</a>, the <a href=#command-facet-action title=command-facet-Action>Action</a> of the command is to run
the <a href=#focusing-steps>focusing steps</a> for the element and then to
<a href=#fire-a-click-event>fire a <code title=event-click>click</code> event</a> at
the element. Otherwise, <a href=#command-facet-action title=command-facet-Action>Action</a> of the command is just to
<a href=#fire-a-click-event>fire a <code title=event-click>click</code> event</a> at
the element.</p>
command is to run the following steps:</p>

</div>
<ol><li>If the element is <a href=#focusable>focusable</a>, run the
<a href=#focusing-steps>focusing steps</a> for the element.</li>

<li>If the element has a defined <a href=#activation-behavior>activation behavior</a>,
<a href=#run-synthetic-click-activation-steps>run synthetic click activation steps</a> on the
element.</li>

<li>Otherwise, if the element does not have a defined
<a href=#activation-behavior>activation behavior</a>, <a href=#fire-a-click-event>fire a <code title=event-click>click</code> event</a> at the element.</li>

</ol></div>


<h3 id=miscellaneous-elements><span class=secno>4.12 </span>Miscellaneous elements</h3>
Expand Down
27 changes: 16 additions & 11 deletions source
Expand Up @@ -46679,17 +46679,22 @@ interface <dfn>DataGridListener</dfn> {
of the command is always false. (The command is never checked.)</p>

<p>The <span title="command-facet-Action">Action</span> of the
command, if the element has a defined <span>activation
behavior</span>, is to <span>run synthetic click activation
steps</span> on the element. Otherwise, if the element is
<span>focusable</span>, the <span
title="command-facet-Action">Action</span> of the command is to run
the <span>focusing steps</span> for the element and then to
<span>fire a <code title="event-click">click</code> event</span> at
the element. Otherwise, <span
title="command-facet-Action">Action</span> of the command is just to
<span>fire a <code title="event-click">click</code> event</span> at
the element.</p>
command is to run the following steps:</p>

<ol>

<li>If the element is <span>focusable</span>, run the
<span>focusing steps</span> for the element.</li>

<li>If the element has a defined <span>activation behavior</span>,
<span>run synthetic click activation steps</span> on the
element.</li>

<li>Otherwise, if the element does not have a defined
<span>activation behavior</span>, <span>fire a <code
title="event-click">click</code> event</span> at the element.</li>

</ol>

</div>

Expand Down

0 comments on commit 5b1605f

Please sign in to comment.