<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>WebA11y</title>
	<atom:link href="http://www.weba11y.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weba11y.com/blog</link>
	<description>Adventures in Web Accessibility</description>
	<pubDate>Thu, 02 Jul 2009 18:50:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>More Fun with the tabindex attribute</title>
		<link>http://www.weba11y.com/blog/2009/07/02/more-fun-with-the-tabindex-attribute/</link>
		<comments>http://www.weba11y.com/blog/2009/07/02/more-fun-with-the-tabindex-attribute/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 18:27:44 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/?p=94</guid>
		<description><![CDATA[Back in November, 2007 I blogged my results of testing the tabindex attribute in several browsers.   I recently retested with the latest versions of the browsers and included Safari 4.  Luckily the recommended methods for working with the tabindex attribute do not change.  Here is the updated version:   
All [...]]]></description>
			<content:encoded><![CDATA[<p>Back in November, 2007 I blogged my results of <a href="http://www.weba11y.com/blog/2007/11/">testing the tabindex attribute</a> in several browsers.   I recently retested with the latest versions of the browsers and included Safari 4.  Luckily the recommended methods for working with the tabindex attribute do not change.  Here is the updated version:   </p>
<p><em>All you never wanted to know about tabindex</em></p>
<p>The tabIndex attribute can be used to allow nearly any element to be put into the tab order or  receive focus programmatically.  This has been implemented in Internet Explorer starting with version 5, Firefox starting with version 1.5, Opera 9.5 and Safari 4.<br />
Being able to set focus to any element on the page is important for accessibility in order to implement full keyboard navigation. Elements that represent the intial interaction with a user interface component<br />
can be but into the tab order.  Other elements which are part of a particular user interface component can be interacted with via other key combinations.  The keystroke interaction and identification of the user interface components to assistive technologies depends upon being able to set focus to these elements.</p>
<p>How Focus and tab key navigation work</p>
<ul>
<li>Normally only input and anchor elements are put into the tab order of a page by default.</li>
<li>Setting a tabIndex attribute of 0 onto an element will put it into the tab order of the page and allow it to receive focus via the keyboard. </li>
<li>Setting a tabIndex of -1 on an element will allow the element to receive focus programmatically.  For input and anchor elements, setting tabIndex of -1 will remove the element from the tab order and allow focus to only be set programmatically.</li>
<li>Setting a tabIndex of  &gt;0 onto an element will put that element sequentially into the tab order based on the tabIndex value.  Elements with a positive tab index are put into<br />
the tab order before other elements with a tabIndex of 0 or which are in the tab order by default. </li>
</ul>
<p>There are different behaviors for the tabIndex attribute and capitalization of the I makes a difference in how the attribute is interpretted in html and xhtml.<br />
After testing different combinations of setting and querying the tabindex attribute, a set of best practices is outlined below followed by a table listing the results of each test.</p>
<h2>Using tabIndex across browser and content type</h2>
<ol>
<li>Always use tabindex with lowercase i in markup. See row 1 in table below.</li>
<li>Use tabIndex with uppercase I when setting in script via element.tabIndex. See row 4 in table below. </li>
<li>Check browser and/or content-type when setting in script via element.setAttribute()
<ul>
<li>if is IE or content-type is text/html - set via elem.setAttribute(tabIndex) uppercase. See row 6 in table below. </li>
<li>if is content-type application/xhtml+xml or not IE 6 or 7 - set via elem.setAttribute(tabindex) lowercase. See row 7 in table below</li>
</ul>
</li>
<li>Use lowercase when querying a value using getAttribute(tabindex) that was set in markup as lowercase. See row 9 in table below.</li>
<li>Use lowercase when querying a value using getAttribute(tabindex) that was set directly on element using element.tabIndex uppercase.  See row 15 in table below.<br />
Setting tabIndex directly on the element using element.tabIndex avoids having to check browser or content type when getting the value.</li>
<li>If the rules above have been followed, use lowercase when querying a value using hasAttribute(tabindex) where available. See rows 25, 31 and 33 in table below.</li>
</ol>
<h3>Simplified Rules</h3>
<ul>
<li>use tabindex lowercase to set in markup</li>
<li>use element.tabIndex with uppercase I to set in script</li>
<li>query via getAttribute(tabindex) lowercase </li>
</ul>
<h2>TabIndex testing results</h2>
<p>The following table shows the results of testing on Windows with Internet Explorer versions 6, 7, and 8, Firefox 2.0.0.20, Firefox 3.0.1, Firefox 3.5, Opera 9.64 and Safari 4.<br />
IE 6, 7, 8 where tested using HTML 4.01 strict.  Firefox 2, 3, 3.5 as well as Opera and Safari were tested with HTML 4.01 strict as well as with XHTML 1.0 strict<br />
served with content-type of  application/xhtml+xml.  Unless otherwise noted, a div was used as the test element.</p>
<table border="1">
<thead>
<tr>
<th></th>
<th></th>
<th>&nbsp;IE 6/7</th>
<th>IE 8 HTML</th>
<th>FF 2/3/3.5, Opera 9.64, Safari 4 HTML</th>
<th>FF 2/3/3.5, Opera 9.64, Safari 4 XHTML </th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>tabindex set in markup (lowercase)</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr>
<td>2</td>
<td>tabIndex set in markup (uppercase)</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>no</td>
</tr>
<tr>
<td>3</td>
<td>tabindex set via elem.tabindex (lowercase)</td>
<td>no</td>
<td>no</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<td>4</td>
<td>tabIndex set via elem.tabIndex (uppercase)</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr>
<td>5</td>
<td>tabindex set via setAttribute(tabindex) (lowercase)</td>
<td>no</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr>
<td>6</td>
<td>tabIndex set via setAttribute(tabIndex) (uppercase)</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>no</td>
</tr>
<tr>
<td>7</td>
<td>query elem.tabIndex uppercase when set as 0 in markup as lowercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>8</td>
<td>query elem.tabIndex uppercase when set as 0 in markup as uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>-1</td>
</tr>
<tr>
<td>9</td>
<td>query getAttribute(tabindex) lowercase when set as 0 in markup as lowercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>10</td>
<td>query getAttribute(tabIndex) uppercase when set as 0 in markup as lowercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>null</td>
</tr>
<tr>
<td>11</td>
<td>query getAttribute(tabindex) lowercase when set as 0 in markup as uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>null</td>
</tr>
<tr>
<td>12</td>
<td>query getAttribute(tabIndex) uppercase when set as 0 in markup as uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0 <span style="vertical-align:super;font-size:x-small"> 1</span></td>
</tr>
<tr>
<td>13</td>
<td>query getAttribute(tabindex) lowercase when set via elem.tabindex lowercase</td>
<td>0</td>
<td>null</td>
<td>null</td>
<td>null</td>
</tr>
<tr>
<td>14</td>
<td>query getAttribute(tabIndex) uppercase when set via elem.tabindex lowercase</td>
<td>0</td>
<td>null</td>
<td>null</td>
<td>null</td>
</tr>
<tr>
<td>15</td>
<td>query getAttribute(tabindex) lowercase when set via elem.tabIndex uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>16</td>
<td>query getAttribute(tabIndex) uppercase when set via elem.tabIndex uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>null</td>
</tr>
<tr>
<td>17</td>
<td>query getAttribute(tabindex) lowercase when set via setAttribute as lowercase</td>
<td>0<span style="vertical-align:super;font-size:x-small"> 2</span></td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>18</td>
<td>query getAttribute(tabIndex) uppercase when set via setAttribute as lowercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>null</td>
</tr>
<tr>
<td>19</td>
<td>query getAttribute(tabindex) lowercase when set via setAttribute as uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>null</td>
</tr>
<tr>
<td>20</td>
<td>query getAttribute(tabIndex) uppercase when set via setAttribute as uppercase</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0<span style="vertical-align:super;font-size:x-small"> 3</span></td>
</tr>
<tr>
<td>21</td>
<td>query elem.tabIndex uppercase when it has not been set in markup</td>
<td>0</td>
<td>0</td>
<td>-1</td>
<td>-1</td>
</tr>
<tr>
<td>22</td>
<td>query getAttribute(tabIndex) upper or lowercase when it has not been set in markup</td>
<td>0</td>
<td>null</td>
<td>null</td>
<td>null</td>
</tr>
<tr>
<td>23</td>
<td>query elem.tabIndex from &lt;a&gt; with no explict value set</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>24</td>
<td>query getAttribute(tabIndex) upper or lowercase  from &lt;a&gt; with no explict value set</td>
<td>0</td>
<td>null</td>
<td>null</td>
<td>null</td>
</tr>
<tr>
<td>25</td>
<td>query hasAttribute(tabindex) lowercase when set in markup as lowercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>true</td>
</tr>
<tr>
<td>26</td>
<td>query hasAttribute(tabIndex) uppercase when set inmarkup as lowercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>false</td>
</tr>
<tr>
<td>27</td>
<td>query hasAttribute(tabindex) lowercase when set in markup as uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>false</td>
</tr>
<tr>
<td>28</td>
<td>query hasAttribute(tabIndex) uppercase when set in markup as uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>true<span style="vertical-align:super;font-size:x-small"> 1</span></td>
</tr>
<tr>
<td>29</td>
<td>query hasAttribute(tabindex) lowercase when set via elem.tabindex lowercase</td>
<td>NA</td>
<td>false</td>
<td>false</td>
<td>false</td>
</tr>
<tr>
<td>30</td>
<td>query hasAttribute(tabIndex) uppercase when set via elem.tabindex lowercase</td>
<td>NA</td>
<td>false</td>
<td>false</td>
<td>false</td>
</tr>
<tr>
<td>31</td>
<td>query hasAttribute(tabindex) lowercase when set via elem.tabIndex uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>true</td>
</tr>
<tr>
<td>32</td>
<td>query hasAttribute(tabIndex) uppercase when set via elem.tabIndex uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>false</td>
</tr>
<tr>
<td>33</td>
<td>query hasAttribute(tabindex) lowercase when set via setAttribute as lowercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>true</td>
</tr>
<tr>
<td>34</td>
<td>query hasAttribute(tabIndex) uppercase when set via setAttribute as lowercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>false</td>
</tr>
<tr>
<td>35</td>
<td>query hasAttribute(tabindex) lowercase when set via setAttribute as uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>false</td>
</tr>
<tr>
<td>36</td>
<td>query hasAttribute(tabIndex) uppercase when set via setAttribute as uppercase</td>
<td>NA</td>
<td>true</td>
<td>true</td>
<td>true</td>
</tr>
<tr>
<td>37</td>
<td>query hasAttribute(tabIndex) upper or lowercase  from &lt;a&gt; with no explict value set</td>
<td>NA</td>
<td>false</td>
<td>false</td>
<td>false</td>
</tr>
</tbody>
</table>
<p>Table Notes:</p>
<ol>
<li>Setting in markup as uppercase tabIndex does not work in XHTML to allow focus to element.</li>
<li>setAttribute(tabindex) lowercase does not work in IE to allow focus to element.</li>
<li>setAttribute(tabIndex) uppercase does not work in XHTML to allow focus to element.</li>
</ol>
<ul>
<li><a href='http://www.weba11y.com/info/tabindexAccessStrict.html' title='Test file for HTML 4 strict'>Test file for HTML 4 strict</a></li>
<li><a href='http://www.weba11y.com/info/tabindexAccessStrictX10.xhtml' title='Test file for XHTML 1 strict'>Test file for XHTML 1 strict</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/07/02/more-fun-with-the-tabindex-attribute/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-06-28</title>
		<link>http://www.weba11y.com/blog/2009/06/28/twitter-weekly-updates-for-2009-06-28/</link>
		<comments>http://www.weba11y.com/blog/2009/06/28/twitter-weekly-updates-for-2009-06-28/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/06/28/twitter-weekly-updates-for-2009-06-28/</guid>
		<description><![CDATA[
Why won&#8217;t tweetsville display my timeline anymore? Rebooted iPhone, cleared cache - I can see messages and favorites but timeline is blank? #
Testing a tweet from tweetsville - timeline won&#8217;t display? Thus have been out of touch last few days #
working on adding aria-readonly to the dojox.DataGrid #dojo #ARIA #a11y #
Anyone know where pressing enter [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Why won&#8217;t tweetsville display my timeline anymore? Rebooted iPhone, cleared cache - I can see messages and favorites but timeline is blank? <a href="http://twitter.com/becka11y/statuses/2364852228">#</a></li>
<li>Testing a tweet from tweetsville - timeline won&#8217;t display? Thus have been out of touch last few days <a href="http://twitter.com/becka11y/statuses/2364562433">#</a></li>
<li>working on adding aria-readonly to the dojox.DataGrid #<a href="http://search.twitter.com/search?q=%23dojo">dojo</a> #<a href="http://search.twitter.com/search?q=%23ARIA">ARIA</a> #<a href="http://search.twitter.com/search?q=%23a11y">a11y</a> <a href="http://twitter.com/becka11y/statuses/2325648740">#</a></li>
<li>Anyone know where pressing enter to submit a HTML form (that has submit btn) is defined?  Can&#8217;t find in HTML spec but seems is std practice <a href="http://twitter.com/becka11y/statuses/2280353142">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/06/28/twitter-weekly-updates-for-2009-06-28/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with disabled (the attribute)</title>
		<link>http://www.weba11y.com/blog/2009/06/23/working-with-disabled-the-attribute/</link>
		<comments>http://www.weba11y.com/blog/2009/06/23/working-with-disabled-the-attribute/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:57:20 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[Accessibility]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/?p=79</guid>
		<description><![CDATA[Once again I was bitten by the manner in which the difference browsers report the value of the disabled attribute. I decided to test the different ways of using the disabled attributes and record my results.  
When writing JavaScript I generally use the object.getAttribute(&#34;attributeName&#34;) syntax to get an attribute value.  However, this will [...]]]></description>
			<content:encoded><![CDATA[<p>Once again I was bitten by the manner in which the difference browsers report the value of the disabled attribute. I decided to test the different ways of using the disabled attributes and record my results.  </p>
<p>When writing JavaScript I generally use the object.getAttribute(&quot;attributeName&quot;) syntax to get an attribute value.  However, this will return very inconsistent results for the disabled attribute. What makes it even worse, is there is more than one way to specify the disabled attribute on an input element.  In HTML 4.01 you should just add the keyword disabled. In XHTML 1.1 you must use disabled=&quot;disabled&quot;. You can also use this in HTML 4.01. </p>
<p>What I learned from all of my testing is:
<ul>
<li>
Use disabled (HTML 4.01 only) or disabled=&#8221;disabled&#8221;  (HTML or XHTML) to set in markup.</li>
<li> When setting via scripting use one of the following to  disable and enable, respectively </li>
<ul>
<li>inputObj.disabled=true  and inputObj.disabled=false via boolean values;</li>
<li> inputObj.disabled=&#8221;disabled&#8221; and inputObject.disabled=&#8221;" via string values;</li>
<li> inputObj.setAttribute(&#8221;disabled&#8221;, &#8220;disabled&#8221;) and inputObj.removeAttribute(&#8221;disabled&#8221;)</li>
</ul>
<li>When testing for the disabled attribute on an input element, use inputObject.disabled for consistent results between browers.</li>
</ul>
<p>Full testing results are tablulated at <a href="http://www.weba11y.com/Examples/disabledAttr.html">Testing the Disabled Attribute</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/06/23/working-with-disabled-the-attribute/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-06-21</title>
		<link>http://www.weba11y.com/blog/2009/06/21/twitter-weekly-updates-for-2009-06-21/</link>
		<comments>http://www.weba11y.com/blog/2009/06/21/twitter-weekly-updates-for-2009-06-21/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/06/21/twitter-weekly-updates-for-2009-06-21/</guid>
		<description><![CDATA[
can u believe that pressing shift+enter works differently in IE 8 if my Local intranet options are set to  auto detect local intranet ntwrk? #
just finished presenting to 7th graders at local school - trying to interest them in engineering. Had them build bridges out of paper. Fun! #
some days fighting to maintain keyboard [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>can u believe that pressing shift+enter works differently in IE 8 if my Local intranet options are set to  auto detect local intranet ntwrk? <a href="http://twitter.com/becka11y/statuses/2245639512">#</a></li>
<li>just finished presenting to 7th graders at local school - trying to interest them in engineering. Had them build bridges out of paper. Fun! <a href="http://twitter.com/becka11y/statuses/2241952024">#</a></li>
<li>some days fighting to maintain keyboard support feels like a losing battle.  Now fighting with IE about how to check for tabindex.  #<a href="http://search.twitter.com/search?q=%23a11y">a11y</a> <a href="http://twitter.com/becka11y/statuses/2227366410">#</a></li>
<li>day off of work to visit elderly parents - although I think work would be easier <img src='http://www.weba11y.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> <a href="http://twitter.com/becka11y/statuses/2177936005">#</a></li>
<li>what&#8217;s up with Nambu thinking every tweet has replies???? <a href="http://twitter.com/becka11y/statuses/2177695644">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/06/21/twitter-weekly-updates-for-2009-06-21/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-06-14</title>
		<link>http://www.weba11y.com/blog/2009/06/14/twitter-weekly-updates-for-2009-06-14/</link>
		<comments>http://www.weba11y.com/blog/2009/06/14/twitter-weekly-updates-for-2009-06-14/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/06/14/twitter-weekly-updates-for-2009-06-14/</guid>
		<description><![CDATA[
OK so I should dig a bit further before jumping to conclusions - http://sphinx.pocoo.org/ can generate accessible HTML doc #
Maybe a better question to ask is, &#8220;what format should be used for creating accessible Web base help?&#8221; #
Any one know of resources comparing  accessibility of CHM vs PDF formats? I need to get up [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>OK so I should dig a bit further before jumping to conclusions - <a href="http://sphinx.pocoo.org/" rel="nofollow">http://sphinx.pocoo.org/</a> can generate accessible HTML doc <a href="http://twitter.com/becka11y/statuses/2120429354">#</a></li>
<li>Maybe a better question to ask is, &#8220;what format should be used for creating accessible Web base help?&#8221; <a href="http://twitter.com/becka11y/statuses/2119712743">#</a></li>
<li>Any one know of resources comparing  accessibility of CHM vs PDF formats? I need to get up to speed fast.  Thx! #<a href="http://search.twitter.com/search?q=%23a11y">a11y</a> <a href="http://twitter.com/becka11y/statuses/2119635208">#</a></li>
<li>Committed the ondijitclick event handler changes - FINALLY!  see <a href="http://bugs.dojotoolkit.org/changeset/17832" rel="nofollow">http://bugs.dojotoolkit.org/changeset/17832</a> <a href="http://twitter.com/becka11y/statuses/2103771487">#</a></li>
<li>FINALLY have rewrite of ondijitclick event handler complete Waiting for code review. Was in keyboard browser event hell for too long!  #<a href="http://search.twitter.com/search?q=%23Dojo">Dojo</a> <a href="http://twitter.com/becka11y/statuses/2093942389">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/06/14/twitter-weekly-updates-for-2009-06-14/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-06-07</title>
		<link>http://www.weba11y.com/blog/2009/06/07/twitter-weekly-updates-for-2009-06-07/</link>
		<comments>http://www.weba11y.com/blog/2009/06/07/twitter-weekly-updates-for-2009-06-07/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/06/07/twitter-weekly-updates-for-2009-06-07/</guid>
		<description><![CDATA[
after all the a11y work I did on the DataGrid I  get discouraged when people complain it isn&#8217;t accessible enough for their needs -sigh #dojo #

Powered by Twitter Tools.
]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>after all the a11y work I did on the DataGrid I  get discouraged when people complain it isn&#8217;t accessible enough for their needs -sigh #<a href="http://search.twitter.com/search?q=%23dojo">dojo</a> <a href="http://twitter.com/becka11y/statuses/2021215806">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/06/07/twitter-weekly-updates-for-2009-06-07/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-31</title>
		<link>http://www.weba11y.com/blog/2009/05/31/twitter-weekly-updates-for-2009-05-31/</link>
		<comments>http://www.weba11y.com/blog/2009/05/31/twitter-weekly-updates-for-2009-05-31/#comments</comments>
		<pubDate>Sun, 31 May 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/05/31/twitter-weekly-updates-for-2009-05-31/</guid>
		<description><![CDATA[
Not much tweeting lately. Struggling through keyboard event hell for unified handler for click, enter and space keys for dojo widgets #dojo #
how do I run safari 3 and safari 4 beta on same machine? I guess I could use web kit daily rather than safari 4 beta if I have to. #
Right NOW Attending [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Not much tweeting lately. Struggling through keyboard event hell for unified handler for click, enter and space keys for dojo widgets #<a href="http://search.twitter.com/search?q=%23dojo">dojo</a> <a href="http://twitter.com/becka11y/statuses/1951773114">#</a></li>
<li>how do I run safari 3 and safari 4 beta on same machine? I guess I could use web kit daily rather than safari 4 beta if I have to. <a href="http://twitter.com/becka11y/statuses/1937525919">#</a></li>
<li>Right NOW Attending ARIA Webinar via EASI <a href="http://easi.cc/entrance.htm" rel="nofollow">http://easi.cc/entrance.htm</a> <a href="http://twitter.com/becka11y/statuses/1926132845">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/05/31/twitter-weekly-updates-for-2009-05-31/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-24</title>
		<link>http://www.weba11y.com/blog/2009/05/24/twitter-weekly-updates-for-2009-05-24/</link>
		<comments>http://www.weba11y.com/blog/2009/05/24/twitter-weekly-updates-for-2009-05-24/#comments</comments>
		<pubDate>Sun, 24 May 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/05/24/twitter-weekly-updates-for-2009-05-24/</guid>
		<description><![CDATA[
RT @iStelios : Importance of HTML Headings for Accessibility - Raymond Selda Blog &#124; http://tinyurl.com/qoght8 #a11y #
Speaker lineup for the Ajax Exp in Boston: 48 men 1 woman. Not enough women with important titles I guess - how sad. #
they are coming by to empty the office trash - must be time to go home! [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>RT @<a href="http://twitter.com/iStelios">iStelios</a> : Importance of HTML Headings for Accessibility - Raymond Selda Blog | <a href="http://tinyurl.com/qoght8" rel="nofollow">http://tinyurl.com/qoght8</a> #<a href="http://search.twitter.com/search?q=%23a11y">a11y</a> <a href="http://twitter.com/becka11y/statuses/1871813522">#</a></li>
<li>Speaker lineup for the Ajax Exp in Boston: 48 men 1 woman. Not enough women with important titles I guess - how sad. <a href="http://twitter.com/becka11y/statuses/1847166000">#</a></li>
<li>they are coming by to empty the office trash - must be time to go home! <a href="http://twitter.com/becka11y/statuses/1840425275">#</a></li>
<li>MacBook Pro screen went black, could see and move the mouse but typing any characters just beeped at me.  Had to reboot! <a href="http://twitter.com/becka11y/statuses/1836847753">#</a></li>
<li>RT @<a href="http://twitter.com/kliehm">kliehm</a> (edited) WTF IE8 supports #ARIA, but many features only on Windows Vista+ <a href="http://is.gd/AJ5u" rel="nofollow">http://is.gd/AJ5u</a> <a href="http://is.gd/AJ5J" rel="nofollow">http://is.gd/AJ5J</a> #<a href="http://search.twitter.com/search?q=%23a11y">a11y</a> good 2 know <a href="http://twitter.com/becka11y/statuses/1835222360">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/05/24/twitter-weekly-updates-for-2009-05-24/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-17</title>
		<link>http://www.weba11y.com/blog/2009/05/17/twitter-weekly-updates-for-2009-05-17/</link>
		<comments>http://www.weba11y.com/blog/2009/05/17/twitter-weekly-updates-for-2009-05-17/#comments</comments>
		<pubDate>Sun, 17 May 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/05/17/twitter-weekly-updates-for-2009-05-17/</guid>
		<description><![CDATA[
Got some embarrassingly stupid bugs fixed today.  Had to admit my stupidity and lack of thorough testing.  That&#8217;ll learn me!  #dojo #
More info on IEEE Accessing the Future Conference July 20-21 in Boston http://tinyurl.com/qs3hnv Hoping I&#8217;ll be there  #
Heading home from AccessU AUS to BOS #
embarrassed by bug in dojo changeset [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Got some embarrassingly stupid bugs fixed today.  Had to admit my stupidity and lack of thorough testing.  That&#8217;ll learn me!  #<a href="http://search.twitter.com/search?q=%23dojo">dojo</a> <a href="http://twitter.com/becka11y/statuses/1810178990">#</a></li>
<li>More info on IEEE Accessing the Future Conference July 20-21 in Boston <a href="http://tinyurl.com/qs3hnv" rel="nofollow">http://tinyurl.com/qs3hnv</a> Hoping I&#8217;ll be there <img src='http://www.weba11y.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> <a href="http://twitter.com/becka11y/statuses/1798188337">#</a></li>
<li>Heading home from AccessU AUS to BOS <a href="http://twitter.com/becka11y/statuses/1785887173">#</a></li>
<li>embarrassed by bug in dojo changeset [17496] have fix but need to test more when back home before I commit  Don&#8217;t want to break twice! #<a href="http://search.twitter.com/search?q=%23Dojo">Dojo</a> <a href="http://twitter.com/becka11y/statuses/1784908932">#</a></li>
<li>Arrived in Austin, TX for AccessU! <a href="http://twitter.com/becka11y/statuses/1755648656">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/05/17/twitter-weekly-updates-for-2009-05-17/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-10</title>
		<link>http://www.weba11y.com/blog/2009/05/10/twitter-weekly-updates-for-2009-05-10/</link>
		<comments>http://www.weba11y.com/blog/2009/05/10/twitter-weekly-updates-for-2009-05-10/#comments</comments>
		<pubDate>Sun, 10 May 2009 10:00:00 +0000</pubDate>
		<dc:creator>Becka11y</dc:creator>
		
		<category><![CDATA[twitter]]></category>

		<category><![CDATA[tweets]]></category>

		<guid isPermaLink="false">http://www.weba11y.com/blog/2009/05/10/twitter-weekly-updates-for-2009-05-10/</guid>
		<description><![CDATA[
worn out after visiting elder parents for the day.  It is so hard to become the parent of your parents! #
Getting ready for AccessU in Austin, Tx next week.  There is still time to register for GREAT a11y training - http://tinyurl.com/clha33 #
strange - col-resize and row-resize cursors are not visible in high contrast [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>worn out after visiting elder parents for the day.  It is so hard to become the parent of your parents! <a href="http://twitter.com/becka11y/statuses/1741388633">#</a></li>
<li>Getting ready for AccessU in Austin, Tx next week.  There is still time to register for GREAT a11y training - <a href="http://tinyurl.com/clha33" rel="nofollow">http://tinyurl.com/clha33</a> <a href="http://twitter.com/becka11y/statuses/1730783449">#</a></li>
<li>strange - col-resize and row-resize cursors are not visible in high contrast mode in Firefox when running in Parallels/WinXP on Mac?? <a href="http://twitter.com/becka11y/statuses/1727971374">#</a></li>
<li>Just found Mitch Kapor (mkapor) on twitter!As an old time Lotus employee (joined in January 1984) I had to follow! <a href="http://twitter.com/becka11y/statuses/1718600996">#</a></li>
<li>looking for keyboard accessible flash player that works in Firefox - any recommendations? <a href="http://twitter.com/becka11y/statuses/1699055802">#</a></li>
</ul>
<p class="aktt_credit">Powered by <a href="http://alexking.org/projects/wordpress">Twitter Tools</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weba11y.com/blog/2009/05/10/twitter-weekly-updates-for-2009-05-10/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
