<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Learning the World &#187; WCAG</title>
	<atom:link href="http://learningtheworld.eu/tag/wcag/feed/" rel="self" type="application/rss+xml" />
	<link>http://learningtheworld.eu</link>
	<description></description>
	<lastBuildDate>Tue, 06 Nov 2012 00:17:33 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Accessible Drop-Down Menus</title>
		<link>http://learningtheworld.eu/2008/accessible-drop-down-menus/</link>
		<comments>http://learningtheworld.eu/2008/accessible-drop-down-menus/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 08:00:09 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ageing]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[aria]]></category>
		<category><![CDATA[arrow keys]]></category>
		<category><![CDATA[assistive technologies]]></category>
		<category><![CDATA[AT]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[blur]]></category>
		<category><![CDATA[buffer]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DHTML]]></category>
		<category><![CDATA[drop-down]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[event delegation]]></category>
		<category><![CDATA[fly-out]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Hick's Law]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[image replacement]]></category>
		<category><![CDATA[internationalization]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[keyboard access]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menulist]]></category>
		<category><![CDATA[multi-level menus]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[pull-down]]></category>
		<category><![CDATA[role]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[screen reader]]></category>
		<category><![CDATA[screenreader]]></category>
		<category><![CDATA[sIFR]]></category>
		<category><![CDATA[tab order]]></category>
		<category><![CDATA[text resize]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/?p=171</guid>
		<description><![CDATA[A few days ago a co-worker asked if <strong><acronym title="Dynamic HTML">DHTML</acronym> drop-down menus pose a problem with accessibility</strong>. Since the Web Content Accessibility Guidelines 1.0 (<acronym>WCAG</acronym>) declared all JavaScript <em>evil</em> in 1999, assistive technologies (<acronym>AT</acronym>) have made significant progress. So we cannot condemn pull-down menus altogether, but there are various reasons to keep an eye on them buggers.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A few days ago a co-worker asked if <strong><acronym title="Dynamic HTML">DHTML</acronym> drop-down menus pose a problem with accessibility</strong>. Since the Web Content Accessibility Guidelines 1.0 (<acronym>WCAG</acronym>) declared all JavaScript <em>evil</em> in 1999, assistive technologies (<acronym>AT</acronym>) have made significant progress. So we cannot condemn pull-down menus altogether, but there are various reasons to keep an eye on them buggers:</p>

<ol>
<li id="ageing"><p><strong>Older people</strong> have difficulties with drop-down and <a href="http://www.w3.org/TR/wai-age-literature/">multi-level menus</a>, because their manual dexterity, eye-hand coordination and space perception decreases. Also some move the mouse when clicking, or tremble, hence it&#8217;s more likely they slip off the menu. Hell, that happens to <em>me</em> frequently!</p>
<p>However, did you notice the Windows Start Menu is more forgiving when you slip off an item? There&#8217;s a little delay before the secondary level is hidden. Perhaps we need an event-capturing script tolerating a slip from the menu rather than the immediate reaction of the <code>mouseout</code> event.</p></li>
<li id="hicks-law"><p>Nested menus are <strong>more complex</strong>. According to <a href="http://en.wikipedia.org/wiki/Hick%27s_law">Hick&#8217;s Law</a> orientation in a multi-level menu can take longer than multiple clicks in a flat menu with good information architecture. See an <a href="http://learningtheworld.eu/2007/usability-analysis/#hicks-law">earlier article</a> for the math.</p></li>
<li id="keyboard-access"><p>The navigation must be <strong>accessible by keyboard alone</strong>. The result should be the same, whether you hover over an item or tab to it. So check for the <code>focus</code> event and <acronym title="Cascading Style Sheets">CSS</acronym> pseudo-class. Don&#8217;t forget to test backwards tabbing (<kbd>shift tab</kbd>). By the way, mobile devices have no mouse either&hellip;</p>
<p>The <strong>tab order</strong> should be consistent and logical, <abbr>i.e.</abbr> not jumping around on a page. Also the focused item should be visible, for example highlighted with the default 1px dotted border some browsers draw around it. Some people think this is ugly and remove the default border. That is a no-no.</p>
<p>And if you <em>really</em> want desktop behavior, add support for the <strong>arrow keys</strong> (<code>event.keyCode</code> 37-40). Keep in mind though that screen readers have predefined functions for the arrow keys in combination with the <kbd>ctrl</kbd>, <kbd>shift</kbd>, or <kbd>alt</kbd> keys. In JavaScript those keys can be detected with the <code>event.ctrlKey</code>, <code>event.altKey</code>, and <code>event.shiftKey</code> properties. Also <strong>crossbrowser event delegation</strong> for <code>focus</code> or <code>blur</code> events can be a bitch, thankfully <a href="http://www.quirksmode.org/blog/archives/2008/04/delegating_the.html"><acronym title="Peter-Paul Koch">PPK</acronym> has a solution</a>.</p></li>
<li id="skip-content"><p>Users of <acronym>AT</acronym> should have means to <strong>skip content</strong>. That&#8217;s possible with semantic markup: a menu as (nested) list(s) enables them to jump to the next block. Also there should be <em>a few</em> skip links at the beginning of the code pointing to important sections on the page, such as content, navigation, or search. Mobile users also profit from that technique (try surfing eBay with Opera Mini <img src="http://learningtheworld.eu/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" />  ).</p></li>
<li id="links"><p><strong>Pages never link to themselves.</strong> When I click on a link (the menu being no exception) I expect to land on a <em>different</em> page. Therefore it&#8217;s confusing to land on the same page. This happened to me recently when I was filling out a form on my mobile phone and got the same page with an error message. It took me a while to realize where I was. It&#8217;s the same whether you have a tiny screen or a low screen resolution to see things larger when you are visually impaired: you only see a small part of the page, so it&#8217;s hard to realize when something unexpected happens.</p></li>
<li id="aria"><p>You can add some semantic sugar with the <strong><acronym title="Accessible Rich Internet Applications">ARIA</acronym> <code>role</code></strong> property. In this case <code>&lt;ul role=&quot;navigation&quot;&gt;</code> would be appropriate. I strongly encourage you to use <acronym>ARIA</acronym> as it is widely supported by browsers and screen readers, enhances a disabled user&#8217;s experience, and doesn&#8217;t break old browsers. A most <a href="http://dev.opera.com/articles/view/introduction-to-wai-aria/">recent introduction</a> has been written by Gez Lemon for the Opera Developer Community.</p></li>
<li id="buffer"><p>If a second level navigation is initially hidden with <code>display:none</code> it won&#8217;t be in the <strong>screen reader buffer</strong>. Therefore off-screen positioning is a better idea, else you need to <a href="http://juicystudio.com/article/improving-ajax-applications-for-jaws-users.php">update the buffer</a> by writing random values into a hidden <code>input</code> field.</p></li>
<li id="scaling"><p>A common problem in menus is <strong>limited horizontal space</strong>. Text should be scalable, and it must not jut-out into other page elements when it is <strong>enlarged</strong>. Even normal text can break a narrow menu when you think of internationalization. In German there are many composite words. While building a website for a competing brand I came across a menu item on the Philips website for &ldquo;male grooming.&rdquo; The German word &bdquo;<span xml:lang="de" lang="de">Körperhaarpflegesystem</span>&rdquo; is guaranteed to blow every menu! <img src="http://learningtheworld.eu/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
<p>Another common problem that prevents scaling in menus are <strong>text graphics</strong>. I know marketing just <em>loves</em> to see the corporate font in the main menu, but text in images can&#8217;t be scaled, people with visual impairments can&#8217;t change text and background colors for higher contrast, and <strong>Flash Image Replacement</strong> like sIFR still has <a href="http://virtuelvis.com/archives/2005/04/i-hate-sifr">accessibility issues</a>, is known to <a href="http://www.456bereastreet.com/archive/200712/choose_an_accessible_image_replacement_method/#comment26">distort fonts</a>, is <a href="http://www.mezzoblue.com/archives/2004/10/26/sifr/">CPU intensive and slow</a>. The bottom line is: don&#8217;t use text as images, make textual information text.</p></li>
</ol>

<p id="technical-issues">So much for accessibility. Besides there are a few <strong>technical issues</strong> to consider: mobile devices often have problems with JavaScript or with layers. Some proxies in large companies <a href="http://www.robertnyman.com/2006/04/25/an-important-lesson-learned-about-ajax-and-accessibility/">filter JavaScript</a> for security reasons, so you can&#8217;t rely on the ubiquitous availability, your script has to be unobtrusive, and you can&#8217;t rely on <code>noscript</code> either. Don&#8217;t even think of creating a menu from JavaScript arrays.</p>

<p>Moreover there&#8217;s a well-known bug in <acronym title="Internet Explorer">IE</acronym>6 responsible for showing <code>select</code> lists always in front of any layers (like your second level menu), regardless of a <code>z-index</code>. Thankfully there are plugins like <a href="http://brandonaaron.net/docs/bgiframe/">bgiframe</a> for jQuery to solve this. Multi-level menus can bloat the code, event handling can be CPU intensive (use <a href="http://icant.co.uk/sandbox/eventdelegation/">event delegation</a>). And if large amounts of menu code is at the beginning, the real content gets further behind and less relevant for search engines.</p>

<p>In <strong>conclusion</strong>, for an alleged quicker entry you pay with many disadvantages. Often drop-down menus just conceal a poorly planned information architecture. I would reconsider their usage.</p>

<p>Did I forget something? What&#8217;s your opinion on drop-down menus? Love them or hate them?</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2008/accessible-drop-down-menus/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Death in the Social Web</title>
		<link>http://learningtheworld.eu/2008/death-in-the-social-web/</link>
		<comments>http://learningtheworld.eu/2008/death-in-the-social-web/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 01:00:29 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[austin]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[john m. ford]]></category>
		<category><![CDATA[john slatin]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2008/death-on-the-social-web/</guid>
		<description><![CDATA[John Slatin is dead. In more than two decades he published numerous articles about making digital information accessible to people with disabilities. As co-chair of the <strong>Web Content Accessibility Guidelines</strong> (<acronym>WCAG</acronym>) Working Group and as founding director of the Institute for Technology and Learning at the University of Texas in Austin he contributed greatly to web accessibility as we know it.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<p>John Slatin is dead. In more than two decades he published numerous articles about making digital information accessible to people with disabilities. As co-chair of the <strong>Web Content Accessibility Guidelines</strong> (<acronym>WCAG</acronym>) Working Group and as founding director of the Institute for Technology and Learning at the University of Texas in Austin he contributed greatly to web accessibility as we know it. Personally I became aware of his works when I learned about captioning videos with the <a href="http://ncam.wgbh.org/webaccess/magpie/">MAGpie</a> software, but I never met him.</p>

<p>A couple of years ago this would have put some distance between us, but who would have thought that information technology would one day close the humane gap, too? His death touched me, for several reasons. Just two weeks ago I had the chance to meet Sharron Rush and Glenda Sims, who worked with John, and what&#8217;s more, he was their <a href="http://www.glendathegood.com/blog/?p=261">friend</a>. At an accessibility award ceremony of Knowbility I was able to get a fair impression how much the accessibility community means to the people in Austin and how much they cherish their friends. Being a friend of Sharron and Glenda he must have been a very special person.</p>

<p>Also in the social web death is no longer distant. I wasn&rsquo;t aware that this is a direction I&rsquo;m not only exposed to, but that my computer screen, the bringer of information, also brings emotions at unexpected moments. People around the world were blogging about John Slatin&rsquo;s forthcoming death, and there is a very intimate portrayal of his last moments <a href="http://leukemialetters.blogspot.com/2008/03/john-passed-away-peacefully-10pm-mon.html">on his own blog</a>. But it is the <em>second time</em> that this happens to me. In September 2006 the science fiction author <a href="http://elisem.livejournal.com/903358.html">John M. Ford died</a>. Until then I only knew a few of his novels and one of the funniest role-playing adventures ever, the award-winning <em>Yellow Clearance Black Box Blues</em>. But then I learned what a person he was. <a href="http://elisem.livejournal.com/903525.html">Why people loved him</a>. That he was always accessible, always funny, always kind. He made an impact. He touched people&rsquo;s life.</p>

<p>In my former career as an Emergency Medical Technician I have seen various facets of death. I&rsquo;ve seen the grim reaper, but I also know why before the discovery of antibiotics pneumonia was also known as &ldquo;the friend of old men.&rdquo; Death can be very peaceful, a welcome friend, and I&rsquo;m not afraid of it. I don&rsquo;t believe in an afterlife, but I love the response John M. Ford&rsquo;s spouse gave to a question once asked at a convention: &ldquo;how many angels can dance on the head of a pin?&rdquo; She <a href="http://elisem.livejournal.com/904354.html">replied</a>: &ldquo;<cite>I&#8217;m pretty sure it&#8217;s too difficult to get an accurate count at the moment because they keep laughing at something Mike says, and then a bunch of them fall off.</cite>&rdquo; I <em>do</em> believe that people live on through their deeds, by the impact they had, by the people whose life they touched. They live on as long as there&rsquo;s someone who remembers them. John Slatin&nbsp;&mdash; and John &ldquo;Mike&rdquo; Ford&nbsp;&mdash; will be remembered, for a very long time.</p>

<h3>Get involved</h3>

<p>The <a href="http://www.knowbility.org/business/john-slatin/">John Slatin Fund Accessibility Project</a> matches accessibility experts with companies that would like a brief review of their site for accessibility. In return, the site owner is asked to contribute a minimum of $500 to The John Slatin Fund. The John Slatin Fund was established to help John&rsquo;s beloved Anna offset the medical expenses incurred during John&rsquo;s long illness. The goal of this project is to raise $25,000 for that purpose. Furthermore there&rsquo;s an option to donate directly to John&rsquo;s family via Paypal.</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2008/death-in-the-social-web/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>When Accessibility is Not Your Problem</title>
		<link>http://learningtheworld.eu/2007/not-your-problem/</link>
		<comments>http://learningtheworld.eu/2007/not-your-problem/#comments</comments>
		<pubDate>Thu, 07 Jun 2007 20:01:07 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[@media]]></category>
		<category><![CDATA[atmedia]]></category>
		<category><![CDATA[atmedia07]]></category>
		<category><![CDATA[atmedia2007]]></category>
		<category><![CDATA[Joe Clark]]></category>
		<category><![CDATA[london]]></category>
		<category><![CDATA[rnib]]></category>
		<category><![CDATA[samurai]]></category>
		<category><![CDATA[To Hell with WCAG 2]]></category>
		<category><![CDATA[upcoming:event=110091]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[wcag 2]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2007/not-your-problem/</guid>
		<description><![CDATA[<strong>Joe Clark&#8217;s</strong> talk at London&#8217;s @media was the most controversial today. To add insult to injury, there was no time for comments or questions from the audience. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/martin-kliehm/536658349/in/set-72157600328144321/" title="Larger version of the sketch on flickr"><img src="/wp-content/uploads/2007/06/joe-clark-sketch" alt="Joe Clark sketch" width="198" height="240" class="floatleft photo" /></a><a href="http://www.joeclark.org/media7">Joe Clark&rsquo;s talk</a> at London&rsquo;s @media was the most controversial today (<a href="http://www.htmldog.com/atmedia2007/whenwebaccessibilityisnotyourproblem.mp3" type="audio/mp3">Podcast</a>). To add insult to injury, there was no time for comments or questions from the audience.</p>

<p>First he was giving an update on his <a href="http://wcagsamurai.org">workover of <acronym title="Web Content Accessibility Guidelines">WCAG</acronym>&nbsp;1.0</a> under the label of <strong>&ldquo;the <acronym>WCAG</acronym> samurai,&rdquo;</strong> something he announced a year ago in his article at A List Apart, <a href="http://alistapart.com/articles/tohellwithwcag2">To Hell with <acronym>WCAG</acronym>&nbsp;2.0</a>. A few anonymous people he will not disclose finished their collective update, also there were two <a href="http://samuraireview.wordpress.com">peer</a> <a href="http://reviewsamurai.wordpress.com">reviews</a> of the final paper without the reviewers knowing about each other. Clark said he hasn&rsquo;t read the reviews either, so this was kind of a premiere.</p>

<p>Then he talked almost an hour about a couple of <strong>things that shouldn&rsquo;t be your concern</strong> (in his opinion) as a web developer:</p>

<ul>
<li><strong>Pixel units:</strong> per definition, pixels are relative units as required by the specifications. Blind people do not care anyway if text is resizable, zoom readers have their screen magnification software. But he misses the point when he concludes that therefore resizable text is not an accessibility issue because disabled users don&rsquo;t have trouble with it. Accessibility doesn&rsquo;t only affect severely disabled persons, it begins with elderly people who need to adjust the font size. And as long as <acronym title="Internet Explorer">IE</acronym>6 is around on a considerable number of desktops, it <em>is</em> our problem to enable text resizing. We cannot just shrug our shoulders and put the blame on a certain browser vendor. Although we can get rid of those resize buttons on web pages. That is really a matter of browser vendors and user education. Patrick Lauke proposed to put such an explanation on the default page of newly installed browsers.</li>
<li><strong>Link text being used out of context:</strong> Clark showed an example of a fictitious car sales page with recurring links to the car&rsquo;s features. Of course the features link of one car is different than the features link of another, but you can clarify that ambiguity through a link title. A list of links on a page is a well known and appreciated feature of screen reader software, why should we cease to support that? But one thing I agree on is using an anchors <code>type</code> attribute to clarify that a linked document is a <acronym title="Portable Data Format">PDF</acronym>. Though to my knowledge screen readers don&rsquo;t make use of that attribute.</li>
<li><strong>Abbreviations, acronyms, initialisms:</strong> We cannot cover all cases, and there are cases like &ldquo;DVD&rdquo; or <em>e. coli</em> where there is no written out meaning of an acronym, or an abbreviation that is so common that it is neither needed nor any help to give the full meaning. But I strongly disagree of dropping the whole concept of contextual help for abbreviations with the argument that cognitive disabled users won&rsquo;t get it anyway.</li>
</ul>

<p>Clark&rsquo;s disputable (unfortunately not at the session because of a lack of time) arguments will certainly be addressed on the <a href="http://www.rnib.org.uk/wacblog/">Royal National Institute of the Blind&rsquo;s blog</a>, so watch their space for a controversial debate. <del>I will also try to get</del> I got also a shot of a hilarious illustration of Joe Clark that Kristiaan Thivessen drew next to me. <img src="http://learningtheworld.eu/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2007/not-your-problem/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
<enclosure url="http://www.htmldog.com/atmedia2007/whenwebaccessibilityisnotyourproblem.mp3" length="29708508" type="audio/mpeg" />
		</item>
		<item>
		<title>Raising the Standards: European Accessibility Guidelines</title>
		<link>http://learningtheworld.eu/2007/accessibility-europe/</link>
		<comments>http://learningtheworld.eu/2007/accessibility-europe/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 00:00:09 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[BITV]]></category>
		<category><![CDATA[brian kelly]]></category>
		<category><![CDATA[contextual accessibility]]></category>
		<category><![CDATA[European]]></category>
		<category><![CDATA[France]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[holistic]]></category>
		<category><![CDATA[legislation]]></category>
		<category><![CDATA[PAS 78]]></category>
		<category><![CDATA[RGAA]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[The Netherlands]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[UWEM]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[WAI]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[Webrichtlijnen]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2007/accessibility-europe/</guid>
		<description><![CDATA[At the dawn of a new version of the Web Content Accessibility Guidelines (WCAG) and the inevitable ensuing updates of national anti-discrimination laws and eAccessibility guidelines, it is time to review the <strong>state of current accessibility legislation</strong>. There are two generations of models: one that sticks to the book, and another with a more holistic approach.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<p>At the dawn of a new version of the Web Content Accessibility Guidelines (WCAG) and the inevitable ensuing updates of national anti-discrimination laws and eAccessibility guidelines, it is time to review the <strong>state of current accessibility legislation</strong>. There are two generations of models: one that sticks to the book, and another with a more holistic approach.</p>

<p>The first model is rather <strong>technical</strong>. There are checklists for the criteria of WCAG 1.0, sometimes with a detailed discussion why and how something is tested. Tests can be automated or conducted by experts. Still there is no guarantee that passing the tests will result in accessible, easy to use websites. This approach is output-driven, but not tested with real users. The complex nature of the tests make them incomprehensible for clients who have to rely on the claims of their agency.</p>

<p>Examples for a technical approach are the German <a href="http://www.bitvtest.de/index.php?a=dl&amp;t=s" hreflang="de">Federal Ordinance on Barrier-Free Information Technology</a> (<acronym title="Barrierefreie Informations-Technologie Verordnung" xml:lang="de" lang="de">BITV</acronym>), the French <a href="http://rgaa.referentiels.modernisation.gouv.fr" hreflang="fr">General Reference for Accessibility of Administrations</a> (<acronym title="Référentiel Général d'Accessibilité pour les Administrations" xml:lang="fr" lang="fr">RGAA</acronym>), or the European <a href="http://www.wabcluster.org/uwem1/">Unified Web Evaluation Methodology</a> (<acronym>UWEM</acronym>).</p>

<p>The second generation is <strong>user-centered</strong>. Web development is a <em>process</em>, and in the end there should be an accessible website that does the job: users can find information, accomplish a task, buy stuff. This is <em>contextual accessibility</em>. Besides expert reviews and conformance inspections this approach involves testing with disabled users to provide evidence for accessible sites. Often these accessibility laws go beyond WCAG and recommend best practices, demand accessible authoring tools according to <acronym title="Authoring Tool Accessibility Guidelines">ATAG</acronym>, or provide considerations for choosing a content management system.</p>

<p>Examples for <strong>contextual and holistic accessibility</strong> laws are the British <a href="http://www.drc-gb.org/pdf/PAS%2078.pdf">Guide to Good Practice in Commissioning Accessible Websites</a> (<acronym title="Publicly Available Specification">PAS</acronym>&nbsp;78; <acronym title="Portable Document Format">PDF</acronym>, 906 <acronym title="kilobytes">KB</acronym>), the <a href="http://www.standards-schmandards.com/2006/swe-guidelines/">Guidelines for Swedish Public Sector Web Sites</a>, or the Dutch <a href="http://www.quirksmode.org/guidelines.html">Web Guidelines</a>.</p>

<p>In their paper about <a href="http://www.ukoln.ac.uk/web-focus/papers/w4a-2007/">Accessibility 2.0</a>, Kelly et al. pointed out a few other flaws of the <acronym>WCAG</acronym> approach. For example the guidelines should be the result of a transparent, evidence based process. Therefore we need more research like that of the German <a href="http://www.einfach-fuer-alle.de/blog/eintraege.php?id=2073_0_1_0" xml:lang="de" lang="de" hreflang="de">Aktion Mensch</a>, a study about the accessibility of Web 2.0 applications. Automation should be de-emphasized. Accessibility as the ultimate goal for <em>users</em> should be acknowledged, also the role of context and the relevance of diversity. We need to develop best practices and make sure they find their way into education. A new WCAG version is a chance to bring contextual accessibility into legislation, standards, and policies.</p>

<p>I will address that in a Web Standards Project meeting tomorrow in London. What are <strong>your suggestions</strong>? Are you familiar with the details of the Dutch or Swedish guidelines? How about the accessibility laws in your country? Are they technical or contextual? Who is involved in creating those policies? Kelly&rsquo;s paper lists a lot of publications about disabled users&nbsp;&mdash; are your aware of any others?</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2007/accessibility-europe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First European e-Accessibility Forum</title>
		<link>http://learningtheworld.eu/2007/european-accessibility-forum/</link>
		<comments>http://learningtheworld.eu/2007/european-accessibility-forum/#comments</comments>
		<pubDate>Sun, 18 Feb 2007 20:00:26 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[aria]]></category>
		<category><![CDATA[book:isbn=1590596382]]></category>
		<category><![CDATA[Chris Heilmann]]></category>
		<category><![CDATA[Christian Heilmann]]></category>
		<category><![CDATA[DAISY]]></category>
		<category><![CDATA[Dave Wilton]]></category>
		<category><![CDATA[Dom Hazael-Massieux]]></category>
		<category><![CDATA[Dominique Hazaël-Massieux]]></category>
		<category><![CDATA[e-accessibility]]></category>
		<category><![CDATA[e-Inclusion]]></category>
		<category><![CDATA[eAccessibility]]></category>
		<category><![CDATA[eInclusion]]></category>
		<category><![CDATA[European]]></category>
		<category><![CDATA[Forum]]></category>
		<category><![CDATA[HTML WG]]></category>
		<category><![CDATA[i2010]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Legal and General]]></category>
		<category><![CDATA[Marian Oosting]]></category>
		<category><![CDATA[Michael Cooper]]></category>
		<category><![CDATA[Miguel González-Sancho]]></category>
		<category><![CDATA[Mike Cooper]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[proceedings]]></category>
		<category><![CDATA[Rich Schwerdtfeger]]></category>
		<category><![CDATA[Richard Schwerdtfeger]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[SMIL]]></category>
		<category><![CDATA[UbiWeb]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[WAI]]></category>
		<category><![CDATA[WCAG]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2007/european-accessibility-forum/</guid>
		<description><![CDATA[The First European e-Accessibility Forum in Paris was organized on January 29th by the French accessibility initiative BrailleNet in cooperation with the European Design for All e-Accessibility Network (<acronym>EDeAN</acronym>). Some 270 participants attended the conference. There were some <strong>remarkable presentations</strong> and a couple of things I would like to share with you.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The <span class="summary">First European e-Accessibility Forum</span> in <span class="location">Paris</span> was organized on January 29th by the French accessibility initiative <a href="http://www.braillenet.org">BrailleNet</a> in cooperation with the European Design for All e-Accessibility Network (<a href="http://www.edean.org"><acronym>EDeAN</acronym></a>). Some 270 participants attended the conference. The <a href="http://inova.snv.jussieu.fr/evenements/colloques/servonline/Actes/actes_en.php" class="url">proceedings and presentations</a> are now online. There were some remarkable presentations and a couple of things I would like to share with you. Since I won&rsquo;t comment on every presentation please check the proceedings papers&nbsp;&mdash; there might be some treasures like &ldquo;Accessible Banking&rdquo; that are more relevant to your work than mine. <img src="http://learningtheworld.eu/wp-includes/images/smilies/icon_wink.gif" alt=";-)" class="wp-smiley" /> </p>

<h3>Speakers</h3>

<ul class="toc">
<li><a href="#schwerdtfeger">Richard Schwerdtfeger</a> (IBM)</li>
<li><a href="#oosting">Marian Oosting</a> (anderslezen.nl)</li>
<li><a href="#heilmann">Chris Heilmann</a> (Yahoo!)</li>
<li><a href="#gonzalez-sancho">Miguel González-Sancho</a> (European Commission)</li>
<li><a href="#cooper">Michael Cooper</a> (<acronym title="World Wide Web Consortium">W3C</acronym> <acronym title="Web Accessibility Initiative">WAI</acronym>)</li>
<li><a href="#hazael-massieux">Dominique Hazaël-Massieux</a> (<acronym>W3C</acronym> Mobile Web Initiative)</li>
<li><a href="#wilton">Dave Wilton</a> (Legal &amp; General)</li>
</ul>

<p id="schwerdtfeger" class="vcard"><a href="http://www-03.ibm.com/developerworks/blogs/page/schwer" class="url fn" rel="colleague met"><strong>Richard Schwerdtfeger</strong></a> works for <span class="org">IBM</span> and is a member of the <span class="org"><acronym title="World Wide Web Committee" class="organization-name">W3C</acronym> <acronym title="Web Accessibility Initiative" class="organization-unit">WAI</acronym> and the <span class="organization-unit"><acronym title="Hypertext Markup Language">HTML</acronym> working group</span></span>, among others. I assume he had been invited because the organizers only knew him for having developed IBM Home Page Reader back in the 1990ies. But his <em>current</em> work involves the <acronym>W3C</acronym> working drafts for <strong>Accessible Rich Internet Applications</strong> (<a href="http://www.w3.org/WAI/intro/aria"><acronym>ARIA</acronym></a>) and other core technologies that his team developed in cooperation with vendors of Assistive Technologies (<acronym>AT</acronym>, <abbr title="for example">e.g.</abbr> screen readers) and the Mozilla Foundation.</p>

<p>There&rsquo;s a paradigm shift in the usability and accessibility of Web 2.0 applications. <acronym>ARIA</acronym> adds meaning, importance, relationships, fills the gaps in (X)HTML, and increases usability for all users through familiar navigation models from desktop applications.</p>

<p id="oosting" class="vcard">From <strong class="fn">Marian Oosting</strong> (<a href="http://www.anderslezen.nl" class="url org">anderslezen.nl</a>) I learned about <strong><acronym title="Digital Accessible Information System">DAISY</acronym></strong>. It&rsquo;s a library standard mostly used for talking books for the blind. Based on <acronym>MP3</acronym> and the <acronym>W3C</acronym> <acronym title="Extensible Markup Language">XML</acronym> standard <acronym title="Synchronized Multimedia Integration Language">SMIL</acronym>, it combines strong compression with superior navigational features. Quite intriguing to use that format for audio books, and since 2006 it&rsquo;s becoming available and more attractive for non-disabled users. For example, talking books are quite popular with elderly people who constitute about 60-80% of public library users.</p>

<p id="heilmann" class="vcard">In his presentation <a href="http://www.wait-till-i.com/index.php?p=389" class="url fn"><strong>Chris Heilmann</strong></a> (<span class="org">Yahoo!</span>) emphasized the need to ask people with impairments because they use assistive technologies in other ways than a non-disabled developer might foresee. Don&rsquo;t assume, integrate their advice!</p>

<p id="gonzalez-sancho" class="vcard"><strong class="fn">Miguel González-Sancho</strong> (<span class="org"><span class="organization-name">European Commission</span>, <span class="organization-unit">Information Society Directorate General</span></span>) presented the <strong>European programs for e-Accessibility</strong>, e-Aging, and <a href="http://www.einclusion-eu.org" class="url">e-Inclusion</a>. <acronym title="Information and Communications Technology">ICT</acronym> is becoming essential for socio-economic participation, yet 40% of the European population is left behind. Functional limitations and disabilities increase due to aging. About 20% or 100 million of the European population is concerned. Thus accessibility is gaining relevance and becomes a <em>social imperative</em>.</p>

<p id="cooper" class="vcard"><strong>In &ldquo;Web Accessibility in the Future&rdquo; <a href="http://www.w3.org/People/cooper/" class="url fn">Michael Cooper</a></strong> (<span class="org"><acronym title="World Wide Web Consortium" class="organization-name">W3C</acronym> <acronym title="Web Accessibility Initiative" class="organization-unit">WAI</acronym></span>) was rather giving the big picture and avoided to announce a release date for <acronym title="Web Content Accessibility Guidelines">WCAG</acronym> 2.0. Although the updated version will definitely play an important role in the future of accessibility, so does the development of a common Accessibility <acronym title="Application Programming Interface">API</acronym> or authoring interfaces that generate accessible content (<acronym title="Authoring Tools Accessibility Guidelines">ATAG</acronym>). Think of user contributed content where the authors are usually unaware of accessibility requirements. Moreover, professionalization of accessible design, programming, and manual and semi-automated evaluation will gain importance. We must keep an open eye on developing technologies (<acronym title="Mathematical Markup Language">MathML</acronym>?, Second Life?), advocate accessibility in early stages, and keep accessibility awareness in legislation and society.</p>

<p id="hazael-massieux" class="vcard"><a href="http://www.w3.org/People/Dom/" class="url fn"><strong>Dominique Hazaël-Massieux</strong></a> (<span class="org"><acronym class="organization-name">W3C</acronym> <span class="organization-unit">Mobile Web Initiative</span></span>) talked about the <strong>mobile web</strong>, of course. There are more mobile phones than computers, they are cheap, and about 80% of the world population has mobile network coverage. Mobile access is everywhere, will become ubiquitous. There are some limitations like the tiny screen, the lack of a proper keyboard, diversity is large and access slow. In fact mobile and impaired users have so many challenges in common that Dominique estimates an accessible website already meets half the requirements of the <a href="http://www.w3.org/TR/mobile-bp/">Mobile Web Best Practices</a>. Bad news for militant accessibility advocates who keep emphasizing the differences between accessibility, universal access and device independence.</p>

<p id="wilton" class="vcard"><strong class="fn">Dave Wilton</strong> from the large British financial services supplier <a href="http://www.legalandgeneral.com" class="url org">Legal&nbsp;&amp; General</a> gave some real world examples <strong>why it literally pays to become accessible:</strong></p>

<p>There are nine million people with disabilities in the <acronym title="United Kingdom">UK</acronym>. If 1% just bought a &pound;300 policy, his company will make &pound;27 million: &ldquo;<q>The cost of making the site accessible pales into insignificance</q>.&rdquo; If people can&rsquo;t buy from Legal&nbsp;&amp; General, they will go to their competitors. In surveys, helpdesk and logfile analyses they found 10% of their visitors don&rsquo;t make it past the home page. That&rsquo;s equivalent to slamming the door into the faces of 20,000 visitors each month. 30% never open a <acronym title="Portable Data Format">PDF</acronym> file. Besides, every third Briton is older than 50, and as we have heard before, the incidence of disabilities increase with age. There are not only people with cognitive impairments, but also 3 million people who speak English as a second language, 1.5 million people lacking basic language skills, and 5.2 million adults who have sub-<acronym title="General Certificate Of Secondary Education">GCSE</acronym> level English.</p>

<p>Next time somebody tells you &ldquo;<q>disabled people are not our target group</q>&rdquo; show &lsquo;em <a href="http://inova.snv.jussieu.fr/evenements/colloques/colloques/article.php?c=45&#038;l=en&#038;a=49" title="Accessibility helping business: the case of Legal &amp; General in United Kingdom">these results</a>:</p>

<ul>
<li>Online traffic surged with a 50% increase in natural search engine listings.</li>
<li>The number of visitors receiving quotes increased by 100% within three months.</li>
<li>The new content management system cut site maintenance costs by 66% with an annual saving of &pound;200k.</li>
<li>Without changing products or prices, conversion rates improved substantially, ranging between 26% and 300% increase with an average of 200% (something <a href="http://www.useit.com/alertbox/government-nonprofit.html" title="Return on investment from usability">Jakob Nielsen seconds</a>).</li>
<li>The entire project delivered 100% return-on-investment (<acronym>ROI</acronym>) within just 12 months.</li>
<li>Customer satisfaction was improved (not one accessibility complaint!)</li>
<li>It was great <acronym title="Public relations">PR</acronym>!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2007/european-accessibility-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Hell with Joe Clark</title>
		<link>http://learningtheworld.eu/2006/to-hell-with-joe-clark/</link>
		<comments>http://learningtheworld.eu/2006/to-hell-with-joe-clark/#comments</comments>
		<pubDate>Thu, 31 Aug 2006 13:00:58 +0000</pubDate>
		<dc:creator><![CDATA[Martin Kliehm]]></dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[A List Apart]]></category>
		<category><![CDATA[Joe Clark]]></category>
		<category><![CDATA[To Hell with WCAG 2]]></category>
		<category><![CDATA[WAI]]></category>
		<category><![CDATA[WCAG]]></category>
		<category><![CDATA[WCAG 2.0]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://learningtheworld.eu/2006/to-hell-with-joe-clark/</guid>
		<description><![CDATA[Joe Clark&#8217;s article &#8220;To Hell with <acronym title="Web Content Accessibility Guidelines">WCAG</acronym>&#160;2&#8221; was an eye-opener. It raised critical awareness for the last-call <acronym title="World Wide Web Consortium">W3C</acronym> working draft, which lead to the extension of the comments period. Still the degree of concern and fear didn&#8217;t need to be raised. He exaggerated many issues, distorted them by omission, or in some cases he&#8217;s plain wrong.&#160;[&#8230;]]]></description>
				<content:encoded><![CDATA[<h3 id="toc">In this article:</h3>

<ul class="toc">
    <li><a href="#intro">Introduction</a></li>
    <li><a href="#differences">Differences between <acronym>WCAG</acronym>&nbsp;1 and <acronym>WCAG</acronym>&nbsp;2</a></li>
    <li><a href="#what-is-wrong-with-wcag-2">What&rsquo;s wrong with <acronym>WCAG</acronym>&nbsp;2?</a></li>
    <li><a href="#discussion">Discussion</a></li>
    <li><a href="#conclusion">Conclusion</a></li>
</ul>

<h3 id="intro">Introduction</h3>

<p>His article <strong>&ldquo;<a href="http://alistapart.com/articles/tohellwithwcag2/">To Hell with <acronym title="Web Content Accessibility Guidelines">WCAG</acronym>&nbsp;2</a>&rdquo;</strong> was an eye-opener. Joe Clark expressed his <strong>angriness about the <acronym title="World Wide Web Consortium">W3C</acronym></strong>, its slow, lobby-driven, bureaucratic processes, the gruelling <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2000OctDec/0573">internal fights</a> within working groups and the <dfn>Web Accessibility Initiative</dfn> (<acronym>WAI</acronym>) in particular. The <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/"><acronym>WCAG</acronym>&nbsp;2.0 Working Draft</a> was a disappointment, basically unreadable, impossible to understand, and failing in major issues after five years in the making (<a href="http://www.w3.org/TR/WCAG10/"><acronym>WCAG</acronym>&nbsp;1</a> took a little longer than <em>two</em> years to become a <em>finalized standard</em>).</p>

<p id="major-flaws">At that time I hadn&rsquo;t read <acronym>WCAG</acronym>&nbsp;2 yet. Joe Clark&rsquo;s passionate article was a revelation, and all the blogs I read agreed with him. Perhaps I wasn&rsquo;t the only one who hadn&rsquo;t read the working draft by then. Because now I have, and while there are some valid points in his inflammatory speech, there are also <strong>major flaws</strong>.</p>

<p id="list-of-major-flaws">Did you know that, contrary to Joe Clark&rsquo;s beliefs, <strong>validating code <em>is</em> a requirement</strong>? That <strong>semantic markup <em>is</em> enforced</strong>? Other issues are <strong>totally overrated</strong>, like claiming a <em>decent tab order</em> was equal to the &ldquo;<q>prohibition of CSS layouts</q>.&rdquo; But more on that later.</p>

<p id="state-of-the-w3c">His assault on the <acronym>W3C</acronym> set a spark to the tinderbox, and suddenly we heard concerns confirming the bad state of the Consortium from respected celebs like <a href="http://www.zeldman.com/2006/07/17/an-angry-fix/">Jeffrey Zeldmann</a>, <a href="http://www.webstandards.org/2006/07/26/misplaced-anger-a-rebuttal-to-zeldmans-criticism-of-the-w3c/" rel="colleague met">Molly Holzschlag</a>, <a href="http://meyerweb.com/eric/thoughts/2006/08/14/angry-indeed/" rel="colleague met">Eric Meyer</a>, <a href="http://lists.w3.org/Archives/Public/public-qa-dev/2006Jul/0011" xml:lang="de" lang="de">Björn Höhrmann</a>, and <a href="http://lists.w3.org/Archives/Public/public-qa-dev/2006Jul/0020">Tim Berners-Lee</a>, to name a few.</p>

<p id="behavior">Clark&rsquo;s public criticism might be seen as a bold and important step. However, actually calling group members &ldquo;<q><a href="http://lists.w3.org/Archives/Public/public-comments-wcag20/2006May/0119">arrogant and ignorant</a></q>,&rdquo; hanging up during conference calls and allegations like &ldquo;<q>some teenagers have greater understanding of valid, semantic markup than the Working Group</q>&rdquo; <span class="nowrap">(<abbr title="ibidem, same place">ibid.</abbr>)</span> hurts the cause. If you <a href="http://www.w3.org/Search/Mail/Public/search?keywords=joeclark&#038;hdr-1-name=from&#038;hdr-1-query=joeclark&#038;index-type=g&#038;index-grp=Public__FULL&#038;resultsperpage=200&#038;sortby=date">search the <acronym>WAI</acronym> mailing list</a> for more contributions from Joe Clark, you will immediately notice his <a href="http://lists.w3.org/Archives/Public/w3c-wai-gl/2005JulSep/0485">egocentric</a>, <a href="http://lists.w3.org/Archives/Public/w3c-wai-gl/2005AprJun/0855">cynical</a>, and often <a href="http://lists.w3.org/Archives/Public/w3c-wai-gl/2005AprJun/0744">insulting</a> style. He criticizes ignorance and harassment within that working group, <strong>but he&rsquo;s part of the problem</strong>.</p>

<p id="w3c-improvements">Meanwhile <strong><em>some</em> things seem to go right at the <acronym>W3C</acronym>:</strong> the <a href="http://www.molly.com/2006/08/14/angry-not-zeldman-meyer-and-fair-concerns-about-the-w3c/" title="Molly Holzschlag about the Internationalization Activity"><acronym title="Internationalization">I18N</acronym> activity</a> led by Richard Ishida, or the quick embracing of <a href="http://microformats.org/blog/2006/03/02/microformats-voted-best-session-at-w3c-technical-plenary-day/">Microformats</a>, <a href="http://www.w3.org/TR/web-forms-2/">Web Forms</a>, <a href="http://www.w3.org/TR/WAPF-REQ/">Widgets and Gadgets</a>, and the <a href="http://www.w3.org/TR/xhtml-role/"><acronym title="Extensible Hypertext Markup Language">XHTML</acronym> 1.1 Role Attribute Module</a>.</p>

<p id="negative-tabindex">The latter has to be seen in context with <a href="http://www-03.ibm.com/press/us/en/pressrelease/7839.wss"><acronym>IBM</acronym>&rsquo;s contribution</a> to the Mozilla source code for <a href="http://developer.mozilla.org/en/docs/Accessible_DHTML"><acronym title="Dynamic Hypertext Markup Language">DHTML</acronym> accessibility</a>. To implement that important technique, <acronym>IBM</acronym> has proposed an extension of the <acronym>HTML</acronym> specification to allow a <a href="http://lists.w3.org/Archives/Public/w3c-wai-gl/2005JulSep/0662" title="IBM&rsquo;s Richard Schwerdtfeger defending their choice">negative tabindex</a>. Joe Clark <a href="http://alistapart.com/articles/tohellwithwcag2/#WCAG-documents:standards">overstates</a> that simple extension as &ldquo;<q><acronym>IBM</acronym> actively promoting a <acronym>DHTML</acronym> technique that breaks the <acronym>HTML</acronym> specification</q>.&rdquo;</p>

<h3 id="differences">Differences between <acronym>WCAG</acronym>&nbsp;1 and <acronym>WCAG</acronym>&nbsp;2</h3>

<p id="principles"><acronym>WCAG</acronym>&nbsp;2 introduces four basic principles of accessibility. Content must be <strong><acronym title="Perceivable, Operable, Understandable, Robust">POUR</acronym></strong>:</p>

<ol>
    <li><strong>P</strong>erceivable</li>
    <li><strong>O</strong>perable</li>
    <li><strong>U</strong>nderstandable</li>
    <li><strong>R</strong>obust</li>
</ol>

<p id="success-criteria">The guidelines are organized around these four principles, and <em>checkpoints</em> for the guidelines are now called <strong>success criteria</strong>. Each success criterion comes with an <a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/">extended commentary</a>, <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/">techniques to meet the guidelines</a>, and common failures. That&rsquo;s more comprehensive than version&nbsp;1 and leaves less room for ambiguity.</p>

<p id="levels">The <strong>success criteria</strong> for each guideline <strong>are organized into three levels</strong>, though not all guidelines contain success criteria at every level. Levels are like <em><acronym>WCAG</acronym>&nbsp;1 priorities</em>, but they are more precise. <acronym>WCAG</acronym>&nbsp;1 checkpoints had only <em>one</em> priority allocated, while a success criterion with <em>multiple</em> levels can be more differentiated.</p>

<p id="triple-a">In the past programming a website to <strong>conform to level triple-A</strong> was an almost impossible and disproportionate effort. Besides guidelines always have room for interpretation, so it is possible that experts disagree if a criterion has been met. Therefore the working group was pragmatic enough to grant triple-A conformance if at least 50% of all level&nbsp;3 criteria are fulfilled.</p>

<p id="baseline">Techniques for a website are defined in a <strong>public <a href="http://www.w3.org/WAI/WCAG20/baseline/">baseline</a></strong>, like &ldquo;<q>the specification that this content <em>relies upon</em> is: <acronym title="Extensible Hypertext Markup Language">XHTML</acronym>&nbsp;1.0 (Strict). The specifications that this content <em>uses but does not rely on</em> are: JavaScript 1.2, <acronym title="Cascading Style Sheets">CSS</acronym>&nbsp;2.</q>&rdquo; You can specify any reasonable technique, there&rsquo;s no longer a preference for <acronym title="World Wide Web Consortium">W3C</acronym> techniques &mdash; if Flash is accessible enough and sufficient for the job, you don&rsquo;t have to use <acronym title="Synchronized Multimedia Integration Language">SMIL</acronym>. More on the <a href="#baseline-technologies">baseline concept</a> later. In the same way your <a href="#conformance-claims">conformance claims</a> and <a href="#conformance-scope">conformance scope</a> are published.</p>

<p id="generic-terms">Since the working group tried to be as generic as possible, <strong>some terms changed</strong>. They speak of <em>&ldquo;web units&rdquo;</em> instead of &ldquo;pages&rdquo;, because <em>web units</em> include things like <acronym title="Asynchronous JavaScript and XML">Ajax</acronym> applications, which wouldn&rsquo;t be covered by the term &ldquo;page.&rdquo; You get used to the terms fairly quick.</p>

<p id="more-cases">The guidelines were extended to be less ambiguous and include <a href="http://www.w3.org/TR/WCAG20/appendixD#newl1" title="List of new requirements in WCAG 2">more cases</a>. Deeply hidden within the documents are some true gems, for <a href="http://www.revoluser.com/2006/05/24/preventing-spam-with-creativity/" title="Techniques for accessible CAPTCHA">example</a> <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/guidelines.html#text-equiv" title="Success Criterion 1.1.1.3 for accessible CAPTCHA">accessible <acronym title="Completely Automated Public Turing-Test to Tell Computers and Humans Apart">CAPTCHA</acronym></a> or <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/Overview.html#SCR21" title="DOM scripting technique for accessible Ajax explained in W3C documents">accessible</a> <a href="http://juicystudio.com/article/making-ajax-work-with-screen-readers.php" title="Accessible Ajax technique further discussed"><acronym>Ajax</acronym></a>. Wonderful!</p>

<h3 id="what-is-wrong-with-wcag-2">What&rsquo;s wrong with <acronym>WCAG</acronym>&nbsp;2?</h3>

<p id="scattered-information"><strong>The information is yet too scattered</strong> among different documents, which makes it hard to read and comprehend. However, the working group notes it&rsquo;s still work in progress, and they want to create separate files for each success criterion as well as a navigation structure. That sounds like the commented <a href="http://www.bitvtest.de/?a=dl&amp;t=s" hreflang="de">German accessibility guidelines</a>, so I&rsquo;m positive that the end-result will be more usable.</p>

<p id="readability">I must admit it could also be <a href="http://www.alistapart.com/comments/tohellwithwcag2?page=8#78" title="Comments on the original article about readability">more readable</a>. A professional copywriter could help, but I can imagine <em>the exact wording</em> of each success criterion was probably a big issue in <acronym>WAI</acronym> meetings, so the stakeholders won&rsquo;t give up so easily just for enhanced readability.</p>

<p id="lack-of-cognitive-requirements">Speaking of comprehension and easy reading, <strong>severe flaws can be found in the cognitive department</strong>. &ldquo;<a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#N10516">Making text content readable and understandable</a>&rdquo; is a joke. Guidelines for <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#gl-complex-elements">context and orientation</a>, <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#gl-facilitate-navigation">navigation</a>, and <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#gl-facilitate-comprehension">comprehension</a> have been more or less dropped since <acronym>WCAG</acronym>&nbsp;1.</p>

<p id="usability">We&rsquo;ve come a long way to understand these features are <em>not</em> for cognitively challenged people alone, but they are <strong>basic requirements for <em>all</em> of us</strong>. Young people with insufficient reading skills, elderly who are new to the Internet &mdash; we all benefit from features like breadcrumb paths, a consistent navigation with clear wording, well written text, or relevant search results. These guidelines spell <strong>usability!</strong> <a href="http://lists.w3.org/Archives/Public/public-comments-wcag20/2006Jun/0118" title="Formal objection to WCAG 2.0 claiming to address cognitive limitations">We can&rsquo;t allow</a> having them removed!</p>

<h3 id="discussion">Discussion</h3>

<p id="discussion-intro">His article raised critical awareness for the last-call <acronym title="World Wide Web Consortium">W3C</acronym> working draft, which lead to the <a href="http://www.alistapart.com/comments/tohellwithwcag2?page=9#84">extension of the comments period</a>. Still the degree of concern and fear didn&rsquo;t need to be raised. Many issues are <a href="http://www.alistapart.com/comments/tohellwithwcag2?page=7#62">exaggerated</a>, distorted by omission, or plain wrong. Let&rsquo;s discuss them in detail:</p>

<ol class="claims">
    <li>
        <h4 id="definitions-of-page-and-site" class="lt-10">1. Definitions of &ldquo;page&rdquo; and &ldquo;site&rdquo;</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-60">
            <p>Exactly what a &ldquo;page&rdquo; is, let alone a &ldquo;site,&rdquo; will be a matter of dispute.</p>
        </blockquote>
        <p>Agreed. Although everybody <em>knows</em> what these terms mean, a <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/appendixA">formal definition</a> is missing. But there are more important issues. That&rsquo;s a typical Joe Clark.</p>
    </li>
    <li>
        <h4 id="valid-html" class="lt-10">2. Valid <acronym>(X)HTML</acronym></h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-0">
            <p>A future website that complies with <acronym>WCAG</acronym>&nbsp;2 won&rsquo;t need valid <acronym title="Hypertext Markup Language">HTML</acronym> &mdash; at all, ever. (More on that later.) You will, however, have to <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#F28-procedure">check the <acronym title="Document Object Model">DOM</acronym> outputs of your site in multiple browsers</a> and prove they&rsquo;re identical.</p>
        </blockquote>
        <p>Not true. <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/guidelines#ensure-compat-parses">Success criterion 4.1.1</a> in plain English demands that <abbr>IDs</abbr> must be unique and elements properly nested. <strong>One technique to ensure that is <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#G134">validation</a>.</strong> How was it possible that Joe Clark missed such an important point? Had he actually read his printouts, or was he just summarizing his correspondence with the working group?</p>
        <p>However, it is true that a <strong>comparison of <acronym>DOM</acronym> outputs</strong> is seen as an <em>alternative</em> technique to ensure proper nesting or well-formedness. That won&rsquo;t work. Even valid code doesn&rsquo;t result in <em>identical</em> <acronym>DOM</acronym> outputs in multiple browsers. Take for example line-breaks and code indented with tabs (white-space): Mozilla counts these as text-nodes, while <acronym title="Internet Explorer">IE</acronym> ignores them in the <acronym>DOM</acronym> tree. Besides it would be a tremendous effort to compare the trees <em>manually</em>. Would somebody please create a validation tool with different browser engines under the hood?</p>
    </li>
    <li>
        <h4 id="table-layout" class="lt-10">3. Table layout</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-10">
            <p>You can still use tables for layout. (And not just <em>a</em> table&nbsp;&mdash; <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#N11001">table<em>s</em> for layout</a>, <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#N11138">plural</a>.)</p>
        </blockquote>
        <p>Of course we know the disadvantages of table layout, and they are a pain to every standardista. From a pure <strong>accessibility standpoint</strong> they are tolerable as long as they can be <strong>linearized</strong> and <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/Overview#G115">semantic markup</a> like <code>&lt;<acronym title="table header">th</acronym>&gt;</code> isn&rsquo;t misused. But speaking semantically, isn&rsquo;t a <code>&lt;<acronym title="table data">td</acronym>&gt;</code> supposed to represent tabular data?</p>
    </li>
    <li>
        <h4 id="blinking-elements" class="lt-10">4. Blinking elements</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-25">
            <p>Your page, or any part of it, may <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#time-limits-blink">blink for up to three seconds</a>. <a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#seizure-does-not-violate-terms">Parts of it</a> may not, however, &ldquo;flash.&rdquo;</p>
        </blockquote>
        <p>Everybody hates the infamous <code>blink</code> tag because it makes text unreadable. But I don&rsquo;t think that&rsquo;s what they are speaking of. It&rsquo;s more like in <strong>banner ads</strong>, or in <strong><acronym title="Asynchronous JavaScript and XML">Ajax</acronym> notifications</strong>. For three seconds I can live with that. The difference between <em>blinking</em> and <em>flashing</em> is the frequency; the latter can result in epileptic seizures. Simply avoid anything between three and fifty flashes per second.</p>
    </li>
    <li>
        <h4 id="baseline-technologies" class="lt-10">5. Baseline technologies</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-40">
            <p>You&rsquo;ll be able to define entire technologies as a &ldquo;<a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#baseline" id="really-says:a-45">baseline</a>,&rdquo; meaning anyone without that technology has little, if any, recourse to complain that your site is inaccessible to them.</p>
        </blockquote>
        <p>Not true. Baselines have to be <strong><a href="http://www.w3.org/WAI/WCAG20/baseline/#who2" title="reasonable baselines">reasonable</a></strong>. If they are not reasonable, others, including your government, can set a baseline.</p>
        <p>There are a couple of <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#baseline-setting">examples for reasonable baselines</a>, like &ldquo;<q>only technologies that have been widely supported by more than one accessible and affordable user agent for more than one release</q>&rdquo; for a government site. More examples can be found in the&nbsp;&hellip;</p>
    </li>
    <li>
        <h4 id="conformance-claims" class="lt-10">6. Conformance claims</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-65">
            <p>If you wish to claim <acronym>WCAG</acronym>&nbsp;2 compliance, you must publish a <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#conformance-required">checklist of declarations</a> more reminiscent of a forced confession than any of the accessibility policies typically found today.</p>
        </blockquote>
        <p>Hmm, which of the following do you think is clearer?</p>
        <ol class="alpha">
            <li><a href="http://www.w3.org/WAI/WCAG1AA-Conformance"><img src="http://www.w3.org/WAI/wcag1AA.gif" class="example" alt="W3C WCAG&nbsp;1.0 Conformance Level Double-A" width="88" height="31" /></a></li>
            <li>
                <blockquote cite="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#conformance-examples">
                    <p>On 5&nbsp;May 2006, &ldquo;G7: An Introduction&rdquo; http://telcor.example.com/nav/G7/intro.html conforms to <acronym>W3C</acronym>&rsquo;s <acronym>WCAG</acronym>&nbsp;2 <strong>Conformance Level Double-A</strong>. The following <strong>additional success criteria</strong> have also been met: 1.1.2, 1.2.5, and 1.4.3. The baseline for this claim is UDBaseline#1-2006 at http://UDLabs.org/baselines#1-2006.html. The specification that this content <strong>&ldquo;relies upon&rdquo;</strong> is: <acronym>XHTML</acronym> 1.0 (Strict), and Real Video. The specifications that this content <strong>&ldquo;uses but does not rely on&rdquo;</strong> are: JavaScript 1.2, <acronym>CSS</acronym>&nbsp;2.</p>
                </blockquote>
            </li>
        </ol>
        <p>My vote goes for the <acronym>WCAG</acronym>&nbsp;2 conformance claim. Include this elegantly as a <acronym title="Resource Description Framework">RDF</acronym> file within a <code>&lt;link&gt;</code> (something missing in this working draft), and I&rsquo;m a happy developer.</p>
    </li>
    <li>
        <h4 id="conformance-scope" class="lt-10">7. Conformance scope</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-50">
            <p>You&rsquo;ll be able to define entire directories of your site as off-limits to accessibility (including, in <acronym>WCAG</acronym>&nbsp;2&rsquo;s own example, <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#conformance-scoping">all your freestanding videos</a>).</p>
        </blockquote>
        <p>That&rsquo;s true. But you can&rsquo;t <strong>exclude integral parts</strong> of a process, like parts of a shop, though further definition would be required which parts can be excluded and which can&rsquo;t. It becomes clearer when you take an example where the <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#conformance-wcag1">scope is set with a date</a>:</p>
        <blockquote cite="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#conformance-wcag1">
            <p>Materials with creation or modification dates before 31&nbsp;December 2006 conform to <acronym>WCAG</acronym>&nbsp;1.0 Level Double-A. Materials with creation or modification dates after 31&nbsp;December 2006 conform to <acronym>WCAG</acronym>&nbsp;2.0 Level Double-A.</p>
        </blockquote>
        <p>I can imagine cases where new content does conform to <acronym>WCAG</acronym>&nbsp;2, while nobody bothers to touch <a href="http://www.w3.org/TR/REC-html32" title="Hypertext Markup Language Recommendation 3.2">really old content</a> somewhere deep in the archives. So scoping is a <strong>practical issue</strong>: rather have conformance for the new and important parts than none at all.</p>
    </li>
    <li>
        <h4 id="video" class="lt-10">8. Video</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-75">
            <p>Not that anybody ever made them accessible, but if you post videos online, you no longer have to provide audio descriptions for the blind at <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#N10516">the lowest &ldquo;conformance&rdquo; level</a>. And only prerecorded videos require captions at that level.</p>
        </blockquote>
        <p>Joe Clark was dubbed <a href="http://www.theatlantic.com/doc/prem/200109/erard" rel="nofollow"><q>the king of closed captions</q></a>, so from his point of view <acronym>WCAG</acronym>&nbsp;2 must be a <strong>step backwards</strong>: audio descriptions for prerecorded video are required on level&nbsp;2, on level&nbsp;1 either audio descriptions or a transcript will be sufficient. Audio descriptions for <em>live</em> video content were <a href="http://lists.w3.org/Archives/Public/w3c-wai-gl/2006AprJun/0195">dropped</a> in November 2005, and captions for live videos are level&nbsp;2.</p>
        <p><acronym>WCAG</acronym>&nbsp;1 was very vague and <a href="http://www.w3.org/TR/WCAG10-TECHS/#tech-synchronize-equivalents">didn&rsquo;t make distinctions</a> between live and prerecorded video. Everything had to have audio descriptions on the lowest level. The WCAG&nbsp;2 approach doesn&rsquo;t go that far. Although this might be disappointing, it is more differentiated and more reasonable.</p>
    </li>
    <li>
        <h4 id="audio" class="lt-10">9. Audio</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-85">
            <p>Your podcasts may have to be remixed so that dialogue is <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#visual-audio-contrast-noaudio">20 decibels louder than lengthy background noise</a>. (You don&rsquo;t have to caption or transcribe them, since they aren&rsquo;t &ldquo;<a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#multimediadef" id="really-says:a-95">multimedia</a>&rdquo; anymore. [&hellip;]</p>
        </blockquote>
        <p>I agree not many people have the equipment to correctly measure a difference of 20&nbsp;<acronym title="Decibels">dB(A)</acronym>, but as a rule of thumb any <strong>dialogue should be easy to understand</strong>. Having my own program on a free radio station I can dig that. But there&rsquo;s another major point Joe misses: although technically <strong>audio only</strong> is not <em>multi</em>media, it <strong><a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#N1013E">still has to be transcribed</a></strong>.</p>
    </li>
    <li>
        <h4 id="skip-links">10. Skip links</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-105">
            <p>You can put a few hundred navigation links on a single page and do nothing more, but if you have <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#navigation-mechanisms-skipcb">two pages together</a> that have three navigation links each, you must provide a way to skip navigation.</p>
        </blockquote>
        <p>Skip links are good, I don&rsquo;t mind to have them everywhere. But in <acronym>WCAG</acronym>&nbsp;1 &ldquo;<q>a few hundred navigation links</q>&rdquo; would have been required to be structured with subheadlines to enhance understanding. That&rsquo;s the real issue here!</p>
    </li>
    <li>
        <h4 id="offscreen-positioning">11. Offscreen positioning</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-115">
            <p>You can&rsquo;t use offscreen positioning to add labels (e.g., to forms) that only some people, like users of assistive technology, can perceive. <em><a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#content-structure-separation-programmatic-intent-head">Everybody</a></em> has to see them.</p>
        </blockquote>
        <p>Although the intent of that criterion clearly is to <strong>make structure available to screen readers</strong> through semantic markup, the sentence Joe Clark refers to <em>could</em> be interpreted the way he does. Here&rsquo;s the <a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#content-structure-separation-programmatic-intent-head" title="Link to the text Joe Clark refers to">original</a>:</p>
        <blockquote cite="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#content-structure-separation-programmatic-intent-head">
            <p>The purpose of this success criterion is to ensure that when such relationships are perceivable to one set of users, those relationships can be made to be perceivable to all.</p>
        </blockquote>
        <p>That&rsquo;s not really new. Think of <strong>zoom readers</strong> with tab navigation via keyboard. If you place content offscreen, it can be quite irritating if an element gains focus and still is not visible. Good practice would require at least changing the element&rsquo;s position to a visible area when it gets <code>:focus</code>. Although labeling <em>forms</em>, like in Joe&rsquo;s example, can be achieved <em>without</em> offscreen positioning since the <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/Overview#H65" title="Using the title attribute on form input fields">title attribute</a> is deemed sufficient.</p>
    </li>
    <li>
        <h4 id="tab-source-order">12. Tab source order</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-125">
            <p><acronym>CSS</acronym> layouts, particularly those with absolutely-positioned elements that are removed from the document flow, may simply be <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#N100C7">prohibited</a> at the highest level. In fact, source order must match presentation order even at the lowest level.</p>
        </blockquote>
        <p><strong><a href="http://www.positioniseverything.net/articles/onetruelayout/anyorder">Death to any order columns!</a> <a href="http://alistapart.com/articles/holygrail">Death to the Holy Grail!</a></strong> I can understand the feelings some have towards that, but again it&rsquo;s <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#tech-tab-order">nothing new</a>. In fact, in Germany&rsquo;s eAccessibility law it was implemented as a priority&nbsp;2 feature, not 3. The tab navigation shouldn&rsquo;t be irritating and jump across the page, so take care of your source order.</p>
    </li>
    <li>
        <h4 id="idioms-acronyms-and-pronounciation">13. Idioms, acronyms, and pronounciation</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-135">
            <p>Also at the highest level, you have to <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#N107C8">provide a way</a> to find all of the following:</p>
            <ol>
                <li>Definitions of idioms and &ldquo;jargon&rdquo;</li>
                <li>Expansion of acronyms</li>
                <li><em>Pronunciations</em> of some words</li>
            </ol>
        </blockquote>
        <p>While for English developers <strong>marking-up foreign-language passages</strong> might be an exception with an unusual amount of &ldquo;<q>fanatical care</q>&rdquo; to achieve this, people in countries like Japan or Germany, where you have many anglicisms especially in technical texts, had <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#gl-abbreviated-and-foreign">a long time</a> to get accustomed to it.</p>
        <p>In fact, according to <acronym>WCAG</acronym>&nbsp;1 <em>any</em> language changes had to be identified as a priority&nbsp;1 requirement, while in <acronym>WCAG</acronym>&nbsp;2 only the document&rsquo;s <a href="/2006/best-practices/#html-language" title="Best practices to define the primary language">primary language</a> is level&nbsp;1, and only <em>passages or phrases</em> within the text are level&nbsp;2, not <em>single words</em>. This is an incredible work reduction. Considering screen readers make a subtle pause before language switches that can get annoying in texts with many foreign words, it is also an improvement for those users.</p>
    </li>
    <li>
        <h4 id="alternate-documents">14. Alternate documents</h4>
        <blockquote cite="http://www.alistapart.com/articles/tohellwithwcag2/#really-says:li-165">
            <p>You also have to provide an alternate document if a reader with a &ldquo;lower secondary education level&rdquo; couldn&rsquo;t understand your main document. (In fact, <acronym>WCAG</acronym>&nbsp;2 <a href="http://www.w3.org/TR/2006/WD-WCAG20-20060427/complete#N1089F">repeatedly</a> <a href="http://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/#F19">proposes</a> maintaining separate accessible and inaccessible pages. In some cases, you don&rsquo;t necessarily have to improve your inaccessible pages as long as you produce another page.)</p>
        </blockquote>
        <p>Again, that&rsquo;s an <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#tech-alt-pages">old friend</a>, and it&rsquo;s emphasized that an <a href="http://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/#accessible-alternatives-level1-intent-head">alternate version</a> &ldquo;<q>is a fallback option and is not preferable to making the content itself accessible.</q>&rdquo; So what? If a technical document for a specific target audience can&rsquo;t use very simple language, it is common to <a href="http://www.w3.org/TR/UNDERSTANDING-WCAG20/Overview#meaning-supplements-techniques-head">provide a text summary</a> for people with lower reading skills. That doesn&rsquo;t mean we forget about accessibility and start publishing nothing but alternate text versions again.</p>
    </li>
</ol>

<h3 id="conclusion">Conclusion</h3>

<p id="cooperation">Joe Clark takes some points, but on a closer look his article leaves a bitter taste as <strong>another tool for  enforcing his point of view</strong> on the Web Content Accessibility Working Group. Okay, probably most of us who care about web standards today have been <a href="http://joeclark.org/access/about/whycaptioning.html" rel="nofollow">nerds</a> as teenagers. But then again most of us have quit playing Dungeons and Dragons and got some social life. We don&rsquo;t spend <a href="http://www.theatlantic.com/doc/prem/200109/erard" rel="nofollow">hours in front of our <abbr title="television">TV</abbr></a> and write <a href="http://blog.fawny.org/category/accessibility/captioning/cbc/" rel="nofollow">angry nitpicking letters to the <acronym title="Canadian Broadcasting Corporation">CBC</acronym></a>. We don&rsquo;t harass <acronym>W3C</acronym> working groups, and when they won&rsquo;t be intimidated, we do not <a href="http://wcagsamurai.org" title="The WCAG Samurai, chaired by Joe Clark" rel="nofollow">found our own</a>. Be gentle and play with the other kids.</p>

<blockquote id="subversion" cite="http://meyerweb.com/eric/thoughts/2006/08/14/angry-indeed/#comment-43103">
    <p>If you want reform then do it from the inside &mdash; the subtlety of subversion is more effective than revolution.</p>
</blockquote>

<p class="cite"><cite><a href="http://meyerweb.com/eric/thoughts/2006/08/14/angry-indeed/#comment-43103">Comment on Eric Meyer&rsquo;s blog</a></cite></p>

<p id="participation"><strong><acronym>WCAG</acronym>&nbsp;2 is not so spoiled</strong>, there&rsquo;s still plenty of opportunity to <a href="http://www.w3.org/WAI/GL/WCAG20/issue-tracking/" rel="nofollow" title="External link to the WCAG issue tracking tool">make your constructive critique heard</a> until the working draft becomes a recommendation.</p>

<p id="acknowledgment" class="acknowledgments">Thanks to the Frankfurt <a href="http://www.webmontag.de" hreflang="de" xml:lang="de" lang="de">Webmontag</a> for the inspiration to write down and extend the things I mentioned in my lecture about <acronym>WCAG</acronym>&nbsp;2 on 14&nbsp;August 2006.</p>
]]></content:encoded>
			<wfw:commentRss>http://learningtheworld.eu/2006/to-hell-with-joe-clark/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
