Slashdot Mirror


Google Accessible Search Released

Philipp Lenssen writes "Google today released Accessible Search, a Google Labs product aiming to rank higher pages which are optimized for blind users. Google asks you to adhere to the W3C's Web Content Accessibility Guidelines if you want to make sure your pages are accessible (and thus, rank better on Google Accessible Search). I wrote a small tool to compare results of default and accessible results."

134 comments

  1. Hmm... by archcommus · · Score: 0

    I wasn't aware websites were optimized for blind people.

    1. Re:Hmm... by Anonymous Coward · · Score: 2, Informative
      I wasn't aware websites were optimized for blind people.

      Many aren't at present, that's the whole point of making it easier to find those that are. Of course, making pages as device independent as practical helps many others as well as the blind.
    2. Re:Hmm... by Shimdaddy · · Score: 5, Informative

      Blind people can use screen readers, but if you bury your content in flash or in images without alt text, it makes it very difficult (impossible really) for the screen reader to know what to say. Also, if you position everything in tables and it loads in a weird order but looks right when it hits the screen, it presents problems, since the reader won't know that the 5 rows down actually explains the 3 columns over.

      CSS can help with this, as it keeps the formatting away from the content, but you still have to keep your .html (or .php or whatever) source files nice, clean and logical. A simple test is, if you can read your source file easily (ie in notepad or vi or whatever) then you're probably ok.

    3. Re:Hmm... by 88NoSoup4U88 · · Score: 1

      Well, I assume blind people use text-readers as one of their tools; So this pretty much would make any Flash-based site useless.
      I also think proper html-tags might help, so they can easily distinguish content from options/framework.

    4. Re:Hmm... by statusbar · · Score: 4, Insightful

      There has been standards for blind web browsing for many years! The problem is that hardly anyone use them, even a lot of government web sites which by law must be accessible.

      The amazing thing is that google, by page-ranking these pages higher, I believe it will do more to improve web accessibility than any law or standards organisation could.

      --jeffk++

      --
      ipv6 is my vpn
    5. Re:Hmm... by LiquidCoooled · · Score: 2, Informative

      Perhaps you need to open your eyes then.

      A well designed standards based website is built in a uniform standard way and contains all the hints required for a screenreader to pickup on.
      Badly designed sites use lots of custom content and stupid user interface elements which make it difficult to access (both from a blind screen readers perspective and usually from a normal users view.

      --
      liqbase :: faster than paper
    6. Re:Hmm... by drinkypoo · · Score: 0, Flamebait
      Well, I assume blind people use text-readers as one of their tools; So this pretty much would make any Flash-based site useless.

      You do not know what you are talking about. Period.

      One has been able to make accessible flash for at at least three years. I was too lazy to look for older citations. That was flash 6; 8 has far more accessibility stuff from what I understand.

      Please STFU. TYVM. HTH, HAND.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    7. Re:Hmm... by 88NoSoup4U88 · · Score: 1

      You're pathetic :) Have a good day.

    8. Re:Hmm... by tehwebguy · · Score: 1

      calm down k

      --
      -- lol pwned
    9. Re:Hmm... by jaweekes · · Score: 1

      So having all your script read on one line is a bad thing?

      Writing ASP script I always add " & vbcrlf" at the end of a "Response.write" line of code. Makes it a lot easier to find errors anyway...

      I know, Perl, PHP, RoR is better. (Added for karma. Why not??) :-D

    10. Re:Hmm... by ajs · · Score: 4, Informative

      Flash's accessibility features are not terribly helpful. They don't adhere to any standards, and require you to run particular software (they rely on Microsoft Active Accessibility, for example) to be compatible with them.

      No, before you go around spouting "STFU" at other folks, make sure you're able to back up your claims. Just becuase a company says "our stuff has accessibility features" doesn't mean they DO, or that they are useful to people who would need them.

      PS: I just tried to find out more about their accessibility features, but they use Flash to explain that, and I don't have sound on this machine... kind of useless.

    11. Re:Hmm... by Dasaan · · Score: 3, Interesting

      Which raises an interesting point. What would happen if Google were to rank pages with valid html slightly higher that pages that don't validate properly?

      --
      XP is basicly 98 with a lot more extra features to hunt down and disable. --Dram
    12. Re:Hmm... by pembo13 · · Score: 1

      I am curious as to whether you use ASP volunteerily or mandatorily.

      --
      "Thanks for all the money you paid to us. We've used it to buy off ISO among other things" -Microsoft
    13. Re:Hmm... by jaweekes · · Score: 1

      We have no policy either way, although it's hard to get anything else installed on the servers. They are also going though a "server consolidation" effort, so there are not many boxes left to "play" with anything else.

    14. Re:Hmm... by Jetson · · Score: 1
      The amazing thing is that google, by page-ranking these pages higher, I believe it will do more to improve web accessibility than any law or standards organisation could.

      Now if only they would do the same thing to down-list sites that are "Optimised for IE6" (or any other browser). The standards already exist, but for most content creators there is no incentive to follow them as long as the majority of their visitors are happy. Google is uniquely capable of reducing the number of visitors....

    15. Re:Hmm... by element-o.p. · · Score: 1

      Disclaimer: I'm still learning CSS, so be gentle if I am mistaken... :)

      CSS can help, but there's a reason why people use tables rather than CSS to lay out web pages: it works. There are a lot of caveats with CSS. As other posters have noted, IE doesn't follow the W3C standards, and therefore tends to display a lot of content defined with stylesheets in unexpected and not altogether wonderful ways. On the other hand, if you rewrite your CSS to work in IE, other browsers don't always work well. However, I have yet to see a browser that choked on a straight HTML table layout (granted lynx/links butcher the layout, but the content is still there).

      Furthermore, consider a simple web page with a rather standard layout: a title/logo section at the top, a navigation column to the side of the main content (doesn't matter which side for this discussion), a main content section and a copyright section at the bottom. This type of layout is very simple with a table: use the <tr> tags to separate the title bar, the navigation/content and the copyright, and use the <td> tags to place the navigation menu and the main content next to each other within the middle <tr> tag. With CSS, however, you place the various divisions where you want them. Unfortunately, if your content is dynamically generated, you won't know beforehand how far down the page your copyright notice should be. While you can use the overflow property to scroll the main content while keeping the rest of the page fixed in place, this is rather ugly, and wastes even more of your page with scroll bars. For an example of what I mean <shameless plug> you can take a look at one of my web pages. I tried to use CSS exclusively for layout on this site. I've since reverted to using tables on most of my web pages, since, IMHO, it just works better for 99% of what I do.

      While there probably is a way around this problem, I haven't figured it out yet, which leads to the third problem with CSS. While it's really powerful, and can do some seriously cool stuff (click here for examples), it's not nearly as easy or intuitive as straight HTML. For professional web developers, that's okay, but for a lot of people, it's more hassle than it's worth.

      --
      MCSE? No, sir...I don't do Windows. Yes, I am an idealist. What's your point?
    16. Re:Hmm... by drinkypoo · · Score: 1

      But on the other hand, they do offer accessibility, and it does work. It might only work with a certain subset, and so on, but that has always been true of flash, so having it be true of flash accessibility is just not a serious issue. If you're willing to use flash, you've already made the statement that you're willing to exclude a certain percentage of users. Meanwhile, the accessibility flash provides is sufficient to fulfill the legal requirement (for those sites which are required to be accessible, that is) and again, if you're willing to use flash, you don't really give a shit about accomodating border cases anyway.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    17. Re:Hmm... by Anonymous Coward · · Score: 0
      While there probably is a way around this problem, I haven't figured it out yet, which leads to the third problem with CSS. While it's really powerful, and can do some seriously cool stuff (click here for examples), it's not nearly as easy or intuitive as straight HTML.
      HTML table layouts are neither easy nor intuitive. And they fail the Lynx test.
    18. Re:Hmm... by Uzuri · · Score: 1

      I'm a little late on the draw, here, a day behind, but I think I know how you could do the design in your example with CSS without a problem. I'm guessing from the way you write that you were thinking to use CSS positioning? There are easier ways, that work pretty much cross browser (Netscap 6 seeming to always be the odd man out, but if you can afford to set that one aside, you're gold.)

      Are you on the css-discuss list? They can be pretty snarky, but they're also helpful.

      I'll grant you your last point, though; I've been doing CSS for more than 6 years now and am just now truely getting the hang of it and getting around some of my early sticking points.

      --
      I'm a she-slashdotter... but I make up for it by living with my folks.
    19. Re:Hmm... by andrewman327 · · Score: 1

      I agree with what you are saying, but realize the amount of trust that we are given Google. I for one trust their "Don't be evil" motto, but it would be a breach of public faith to start meddling with search results too much.

      --
      Information wants a fueled airplane waiting at the hangar and no one gets hurt.
  2. Still missing the point. by jZnat · · Score: 0

    Accessible pages typically mean you don't rely on tables to present your content, yet Google still does. Otherwise, very nice to see.

    --
    'Yes, firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.'
    1. Re:Still missing the point. by laffer1 · · Score: 4, Interesting

      It depends. If you actually talk to a blind person, tables aren't as annoying as people using characters between links. For instance, doing navigation with a pipe (vertical bar) or some other character sounds strange to them. I worked for someone who was blind and owned their own business for a time. He said cnet was one of the most annoying web properties for him to use. At the time their navigation sounded terrible and was quite randomly placed. He also didn't like navigation at the top as much except on the first page. Worst of all, he hated hearing. about us vertical bar products veritcal bar etc...

      Oh and he used Internet explorer. His software tied in with that so it looked like an ie hit and even tried to load all the crap everyone else deals with in IE. He did IE on windows using a dell.

    2. Re:Still missing the point. by IdahoEv · · Score: 5, Insightful
      Indeed. Point 5 of the guidelines:
      Tables should be used to mark up truly tabular information ("data tables"). Content developers should avoid using them to lay out pages ("layout tables"). Tables for any use also present special problems to users of screen readers (refer to checkpoint 10.3).

      Even Google's ultra-simple front page violates this guideline, despite zero need to do so.

      Point 3 of the guidelines says this:
      Mark up documents with the proper structural elements. Control presentation with style sheets rather than with presentation elements and attributes.

      But if you dig into the source of google.com, you see cruft like this:
      <br><font size=-1><font color=red>New!</font>
      Google fails rather dramatically to implement any web standard, not even including a doctype. These problems aren't limited to their front page, either. news.google.com is just as bad or worse.

      This is really a shame. The content that google presents is lightweight and free of the layout challenges that can sometimes make web standards difficult to follow: Google should be the perfect test case for perfect standards and accessibility. Instead, it's a throwback to 1996 web design. That they're launching a tool to test accessibility to the blind is incredibly ironic.

      --
      I stole this sig from someone cleverer than me.
    3. Re:Still missing the point. by daeg · · Score: 2, Funny
      I found it amusing that the main page of the "accessible" search page uses:
      document.f.q.focus();
    4. Re:Still missing the point. by Articuno · · Score: 1

      At least they are honest: http://blog.outer-court.com/accessible/?q=google They don't put their own page on the top, as it isn't very "accessible"... :-)

      --
      So Long and Thanks for All the Fish!
    5. Re:Still missing the point. by joe+155 · · Score: 1

      I'll take your word for it that this is the case, I have little experience with how it works, but it seems to me that they could make another goodle, like www.google.com/blind and in this there could be nothing which would impede blind users, so simply a search box at the top right (or where ever it would be best)... surely that would be a really helpful tool to go with this and take no effort at all. But I'm no expert so I might be missing something.

      --
      *''I can't believe it's not a hyperlink.''
    6. Re:Still missing the point. by Anonymous Coward · · Score: 0

      And this is reflected on the search as well.

      http://blog.outer-court.com/accessible/?q=search

      Searching for "search", google doesn't even show up in the acessible list.

    7. Re:Still missing the point. by twistedsymphony · · Score: 1

      huh, I never thought about how a blind person my be experiencing my pages... and I've almost always used vertical bars to separate navigation links! Even still my page seems to pop up earlier in the "Accessible" search, probably because it conforms to W3C strict.

      Anyone know of any resources for improving your sites for the visually impaired, or even some sort of tool that will let me experience my sites as a blind person would... it might help for some perspective.

      And here I thought I was getting the best accessibility by simply ensuring compatibility across browsers. I guess there's almost always something more we can do.

    8. Re:Still missing the point. by CopaceticOpus · · Score: 1

      Amen! Google is AWFUL about basic web standards. You'd think they never heard of them. Considering some of the philosophies they espouse, you'd think they could devote some tiny effort towards embracing these standards.

      How long would it take a good Perl developer to proxy the Google search page, and to produce validating results which look identical in all the major browsers? Probably less than a day. Of course, Google would need to take more time to optimize it, but they've had years to do this. Get with it dagnabit!

    9. Re:Still missing the point. by PietjeJantje · · Score: 2, Insightful

      The reason is of course not that Google cannot make a page without the use of tables or the font tag, but that the pages work with even the oldest of browsers (except IE 2.0 which doesn't do tables). You can't DIV or CSS your way around that. Big sites like Google and Yahoo have always been breaking rules, either for speed (not using quotes etc.) or for backward compatability. W3C is nice but doesn't earn you money.

    10. Re:Still missing the point. by Sparr0 · · Score: 1

      For a page like the google front page that gets maybe a billion hits a day I can completely understand ignoring a few standards to cut even 100 bytes off the total size of the page. That would reduce their traffic by 100GB/day.

    11. Re:Still missing the point. by Anonymous Coward · · Score: 0

      Turn on Narrator or equivalent. Turn off monitor. Have fun!

    12. Re:Still missing the point. by reymendoza · · Score: 1

      web accessibility is making your website accessible to all kind of users, disabled or not, regardless of what browser they are using. I will emphasize that accessibility is for all, not for a select group of persons. Because if this is how it is treated then it becomes burdensome for designers/developers. Imagine designing only for a selected audience (nothing wrong with that if that is your purpose) then your site will be have limited use. Should designers ask for a higher fee because they know accessibility? NO. But they can be given preference when a company is selecting their web designer. Remember that accessibility can directly mean higher sales because more people can access their site and there is a higher percentage of buying something if you can see/ access it (obviously!) Having laws to make developers comply is a push approach. A pull approach means having the designers comply because there are benefits. When people know that there are business benefits because of accessibility then they will comply, with or without laws. Thanks, Rey Mendoza

    13. Re:Still missing the point. by zobier · · Score: 1

      Mod up!
      Get a copy of JAWS, put on a blindfold and try to find your way around; That's what I do.

      --
      Me lost me cookie at the disco.
    14. Re:Still missing the point. by zobier · · Score: 1

      Yep, that's pretty much it!
      Pitty they still need to support Netscape 4, SomeWierdWebBrowserYou'veNeverHeardOfBefore and friends.

      --
      Me lost me cookie at the disco.
    15. Re:Still missing the point. by zobier · · Score: 1
      --
      Me lost me cookie at the disco.
    16. Re:Still missing the point. by Anonymous Coward · · Score: 0

      Trivial answer...how embarassing....

    17. Re:Still missing the point. by Anonymous Coward · · Score: 0

      Yeah, cause

        <table cellspacing=0 cellpadding=0><tr><td>Advanced Search</td></tr>
      is so many fewer bytes than
            <ul><li>Advanced Search</li>

    18. Re:Still missing the point. by Bogtha · · Score: 1

      Have you ever actually looked at Google's code? If they were that concerned about bandwidth, there's plenty of other things they could do to save bandwidth while still conforming to spec. Google's invalid code seems to be caused by ignorance or apathy, not efficiency.

      --
      Bogtha Bogtha Bogtha
    19. Re:Still missing the point. by Bogtha · · Score: 1

      The reason is of course not that Google cannot make a page without the use of tables or the font tag, but that the pages work with even the oldest of browsers (except IE 2.0 which doesn't do tables). You can't DIV or CSS your way around that.

      That's because you don't need to. Using CSS doesn't make your page stop working with older browsers, it was specifically designed to be backwards compatible. For example, using <body bgcolor="#ffffff"> instead of body {background: #fff} is unnecessary in browsers as old as Internet Explorer 3 and Netscape Navigator 4, and browsers older than that get the default background colour, which is usually white anyway. Plus you can factor out CSS into an external stylesheet which is far more efficient.

      W3C is nice but doesn't earn you money.

      How much money do you think Google earns from searchers using vintage browsers who would use a different search engine if the page was slightly uglier?

      Plus, as I mentioned in another comment, Tesco earned £13m per annum from accessibility improvements to their website, so blanket statements like that are simply false anyway.

      --
      Bogtha Bogtha Bogtha
    20. Re:Still missing the point. by Bogtha · · Score: 1

      It's a waste of time and less user-friendly to try maintaining two versions. Accessibility improvements generally improve the experience for normal visitors as well. I guess you're assuming that an accessible design has to be boring and plain, but this isn't the case, you can have normal-looking designs that degrade gracefully so that they are still accessible.

      --
      Bogtha Bogtha Bogtha
    21. Re:Still missing the point. by PietjeJantje · · Score: 1

      Sorry for not stating the obvious before, but the use of these "illegal" tags is exactly to work around the flaws of "graceful degrading". These guys want their home page to look exactly alike in differert browsers, and not just simply degrade to something useful but not looking the way it is supposed to. Graceful degrading is from a technical point of view. Using bad tags to make it look the same is the marketing approach. For instance, I could use css to give a font a certain color, or the font tag. Both texts will render in old browsers, only the second with the color the marketing department ways. The rest is acedemical.

    22. Re:Still missing the point. by Anonymous Coward · · Score: 0

      We did an exercise a few months back in the web standards group. We redeveloped Google's homepage with an external CSS file, fully semantic and table-free code, and we replaced the GIF logo with a PNG. We brought down the weight by a few KBs, which is a lot for Google. Just the external CSS file in itself, which is always cached, will save any website a lot of money in bandwidth.

      Google's persistence in using a piss-poor frontpage (and results page, and every other page), is either ignorance or blatant stupidity. It is most definitely not a smart or educated decision.

    23. Re:Still missing the point. by Bogtha · · Score: 1

      Sorry for not stating the obvious before, but the use of these "illegal" tags is exactly to work around the flaws of "graceful degrading".

      You use tags to mark the beginning and ends of elements. That is all you can possibly do with them. You are talking about element types, not tags.

      These guys want their home page to look exactly alike in differert browsers

      Perhaps, but why? Are you saying that it actually makes them money to have Netscape 3 users see a white background instead of a light grey background?

      Marketing isn't an end in itself. The objective is to make money.

      --
      Bogtha Bogtha Bogtha
    24. Re:Still missing the point. by PietjeJantje · · Score: 1
      >You use tags to mark the beginning and ends of elements. That is all you can possibly do with them. You are talking about element types, not tags.

      Whatever.

      >Marketing isn't an end in itself. The objective is to make money. You stole my argument. W3C isn't a goal in itself. Turning the argument around doesn't fix that. If so, please give a list of browsers that fail to render the tabled and fonted Google page otherwise.

    25. Re:Still missing the point. by Cyberax · · Score: 1

      Well, if you don't like the simple answer you can always put your eyes out!

    26. Re:Still missing the point. by Bogtha · · Score: 1

      You stole my argument. W3C isn't a goal in itself.

      No, but it has beneficial consequences. For example:

      • Less chance of things breaking in the future: historically, when new versions of browsers are released, they have always tripped up on some kinds of invalid code that previous versions did not, while the valid equivalent continued to work. This is true of every major release of every major browser that I can think of.
      • Bandwidth savings. Taking the design out of the markup and putting it into an external stylesheet saves bandwidth and makes pages faster to load. This is especially true of dynamically generated pages like search results.
      • Quality assurance work is easier. When you run a validator over a page, it's easier to spot a single error that stops a page from being invalid than it is to spot a single error amongst dozens that you think can be safely ignored. And, when you scale that out to a large number of pages, it's infeasible to run a validation spider over hundreds of web pages on a regular basis to notify you of any errors it finds - unless you write valid code. Or do you want to be swamped with thousands of error messages in your inbox every day?

      What beneficial consequences does making the design identical for Netscape 3 users have?

      --
      Bogtha Bogtha Bogtha
    27. Re:Still missing the point. by jZnat · · Score: 2, Informative
      For instance, doing navigation with a pipe (vertical bar) or some other character sounds strange to them.
      Which is why I use unordered lists for lists of links. Using CSS, you can just do this:
      #someId li { display: inline; }
      #someId::after { content: ' | '; }
      And if XHTML 2.0 ever gains traction, making navigational lists is as easy as:
      <nl>
      <li href='/some/link/'>Description of link</li>
      </nl>
      --
      'Yes, firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.'
    28. Re:Still missing the point. by PietjeJantje · · Score: 1
      You don't have to list the points I use myself when making websites ;) I was explaining the choices portals and search engines have made in the past. These are getting much less valid over time of course for these particular examples.

      But regarding your question, the answer, again, is: money.
      Take any percentage of users with "old browsers" over the years, and against that you can put an audience break point where your neglectance or scaring away of those people costs more than serving them earns.
      Although I like using the newest technologies and be on the frontier, commercially this is often a bad idea and one needs, on purpose, NOT be using the newest or for technology evangelists correct technologies, but those which are most mainstream. Like it or not, being two steps behind in browser land is best for sites with mass public. If you make a web site for the mass public, don't be an technology evangelist on the client side. It costs you.

      I'm not saying I like this, or I didn't think of your points. As a developer, I don't like it. As a professional however, it is a fact I can't ignore for certain sites.
      I see too many evangelists (and I'm paradoxically one of them if you look at my site only), for instance making sites requiring at least screens of 1024 pixels in width, and if you got 800x600 (last year >15%, I guess now 10%), you "should upgrade". One could argue about that, the point is shareholders won't, page & banner views and clicks don't lie, and profit is highest when they are not ignored. The summarize your question's answer again: money.

  3. Accessible Content by Alexandra+Erenhart · · Score: 5, Insightful

    From the Accessible Search FAQ:

    How can sites make their content more accessible to the blind?

    Some of the basic recommendations on how to make a website more useable and accessible include keeping Web pages easy to read, avoiding visual clutter -- especially extraneous content -- and ensuring that the primary purpose of the Web page is immediately accessible with full keyboard navigation


    I wish more sites where like that. Do you want info? You get it right there, without all the mumbo-jumbo associated with most current websites.

    1. Re:Accessible Content by pimpimpim · · Score: 1
      I am not visually impaired, but since I'm surfing with out-of-date or text-only browsers every now and then, I get similar issues that I'd like to add:

      Get rid of flash/java/javascript for anything related to navigation on the site! These things are nice for showing a movie, or a small program, but not for main content and navigation

      A completely cluttered page with an option added afterwards to see it in larger fonts is still a cluttered page! Once I saw a site for local elections where there was a link to the part of the site for visually impaired people (large font page), but you needed to find the link first, which was still in small fonts, hidden on the page somewhere.

      If you use the ALT-tag for pictures, use it wisely. Don't put alt-tags saying 'picture' or 'link'. Until now I liked the pages that didn't use the alt-tag better, as 'left-arrow.gif' 'home.gif' are still more intuitive then non-saying alt-tags (of which there are way too many).

      --
      molmod.com - computing tips from a molecular modeling
    2. Re:Accessible Content by Igmuth · · Score: 3, Insightful
      Once I saw a site for local elections where there was a link to the part of the site for visually impaired people (large font page),
      Wait... are you saying that they had an entire seperate page that they made simply made the font larger? That is insane. The idea of accessible web pages is that if people need a larger font size, they should be able to select that larger font size in their viewer of choice, and it shouldn't break your page. (I.e. no images as text, etc)
    3. Re:Accessible Content by Ryan+Stortz · · Score: 3, Funny

      I tried searching for Porn and the 5th link down was to this article on the Register that claims Porn makes you blind. :(

      --
      Bugs are just features that have been fixed.
    4. Re:Accessible Content by Awod · · Score: 1

      If only you were blind...

    5. Re:Accessible Content by Alexandra+Erenhart · · Score: 1

      I can always close my eyes... is the only sense you can actually choose to use it or not.

    6. Re:Accessible Content by Rigrig · · Score: 1
      Get rid of flash/java/javascript for anything related to navigation on the site! These things are nice for showing a movie, or a small program, but not for main content and navigation
      What's wrong with using javascript to replace a default menu with a drop-down menu? My site with javascript disabled has a single link to a foto page, which lists all available albums. With javascript enabled, the link still points to that page, but mouse-overing it also opens a menu with direct links to the various albums.
      --
      **TODO** [X] Steal someone elses sig.
    7. Re:Accessible Content by Bogtha · · Score: 1

      I agree that it's stupid to have per-website controls for this, but you don't have to create entirely separate pages, the typical approach is just to set a cookie that lets the server know that it should include a body { font-size: whatever; } rule. The page contents can stay the same, it's an additional style rule that's included - one line of code.

      --
      Bogtha Bogtha Bogtha
    8. Re:Accessible Content by Igmuth · · Score: 1

      I think you missed my point entirely. The whole purpose of CSS is that the server shouldn't need to care. It should simply allow the user to override the default fontsize of the page to the size that they need. Person A may only need base font set to 15 point, while person B may need a 22 point font. And when person C views it with a screen reader, it again shouldn't matter.

    9. Re:Accessible Content by Bogtha · · Score: 1

      I think you missed my point entirely.

      No, I knew exactly what you were getting at, which is why I said "I agree that it's stupid to have per-website controls for this". But one of your assumptions was way off, which is what I was addressing. I've been designing with CSS for years, you don't need to explain the basics to me.

      --
      Bogtha Bogtha Bogtha
    10. Re:Accessible Content by Igmuth · · Score: 1

      Then I must not understand the point of this line the typical approach is just to set a cookie that lets the server know that it should include a body { font-size: whatever; } rule. Why does the server need to be involved at all? Why not just let the client override it themselves?

    11. Re:Accessible Content by Bogtha · · Score: 1

      Then I must not understand the point of this line the typical approach is just to set a cookie that lets the server know that it should include a body { font-size: whatever; } rule.

      You do understand what "typical" means, don't you? You said:

      Wait... are you saying that they had an entire seperate page that they made simply made the font larger?

      In actual fact, nobody does what you imagine to happen. They use the approach I described. Just because I described the approach, it doesn't mean that I approve of it or that I think it's the best way of doing things. It's not. You and I both agree on that, and this is the third time I've said so. If you look back through my posting history, you'll see that websites messing with the font size annoy me. I even wrote a user stylesheet when Slashdot fucked up the fonts in the redesign.

      --
      Bogtha Bogtha Bogtha
  4. Falun Gong Show by digitaldc · · Score: 1, Insightful
    --
    He who knows best knows how little he knows. - Thomas Jefferson
    1. Re:Falun Gong Show by AtOMiCNebula · · Score: 2, Insightful

      Let's take a hypothetical situation. You live in a communist country (China), and are trying to do some research on a paper for your studies. You need to pull up some information on a completely legitimate topic (as per China's regulations). What would you use to find this information? Would you, as a Chinese person, whine and moan and boycott Google because they were censoring your results? Would you refuse to use them, because you know full well that if they didn't censor their results, there'd be no Google for you at all?

      I'm not trying to say Google is justified here. But, at some point you have to draw the line. China is who you should be griping at, not Google. Google is still trying to help the people of China, they just aren't legally allowed to help them as much as they can help people in other countries.

      So, I'll ask again. Isn't some of Google better than none?

    2. Re:Falun Gong Show by Anonymous Coward · · Score: 0

      As I understand it, "some of Google better than none" isn't the issue; google.com is still accessible within China, and less than 1% of Chinese users use google.cn. I guess I've never really understood why everyone gets so pissed about the whole China thing.

  5. At some point it doesn't matter... by MudButt · · Score: 3, Interesting

    I somehow think that a search for "Adobe", "Photoshop", etc. will still give you adobe.com as the #1 result, despite its accessibility problems.

    1. Re:At some point it doesn't matter... by skraps · · Score: 1

      Far from it... try it for yourself with the compare tool that was linked in the summary.

      --
      Karma: -2147483648 (Mostly affected by integer overflow)
    2. Re:At some point it doesn't matter... by McGiraf · · Score: 5, Funny

      Photoshop, blind, hum ... well

    3. Re:At some point it doesn't matter... by Karthikkito · · Score: 1

      I wonder if their algorithm involves both relevance as well as accessibility so that a highly relevant site might be able to be ranked first even if it's not as accessible as the alternatives.

    4. Re:At some point it doesn't matter... by Anonymous Coward · · Score: 0

      More irony: Searching for Google gives Wikipedia's article first place.

      Same with M$. In fact, just about anything that has an article in Wiki goes first.

    5. Re:At some point it doesn't matter... by Anonymous Coward · · Score: 1, Funny
      "Photoshop, blind, hum ... well"

      Well, I've seen Photoshop user's skill levels, and this could explain a lot...

  6. Microsoft.com NOT "accessible" by AugustZephyr · · Score: 4, Interesting
    1. Re:Microsoft.com NOT "accessible" by MudButt · · Score: 0, Redundant

      What do those links have to do with the accessibility of the sites you mentioned? You just linked to an accessible version of google.

    2. Re:Microsoft.com NOT "accessible" by Anonymous Coward · · Score: 0

      Also to add, it appears that Microsoft's Accessibility page isn't as accessble as the Windows XP Accessibility Resources page...

      Comparison here

    3. Re:Microsoft.com NOT "accessible" by MrP-(at+work) · · Score: 2, Informative

      you seemed to have missed the point of this service.. its not just that the google site is accessible, it's that google actually sorts the results showing more accessible sites first.. meaning google says when searching "microsoft" there are more accessible sites than microsoft so it displays them first, whereas searching for slashdot or digg shows slashdot and digg as result 1 meaning google considers the two sites to be accessable

      --
      [an error occurred while processing this directive]
  7. one of the best tool ever by mu22le · · Score: 5, Interesting

    I didn't get it initially but this is one of the best tool google ever gave us, most spam sites designer do not care for standards and are left out of the 'accessible' results. I think I'm going to switch to the new sevice soon.

    1. Re:one of the best tool ever by Anonymous Coward · · Score: 0

      Accessible porn?

    2. Re:one of the best tool ever by drunkennewfiemidget · · Score: 1

      Unfortunately, I'm sure that's next on their list. :(

    3. Re:one of the best tool ever by ladadadada · · Score: 1

      I'm right there with you on this one. In my casual comparison of the two services, the accessible search turned up mostly the same results as the normal search but without the domain parking and other less relevant sites.

      The accessible version tended to show up more .org results than the normal version but I suspect this is a correlation between people who understand the difference between .org and .com and people who understand the importance of accessible web design.

      I'll be using the comparison site for a while but if the accessible version continues to produce more relevant results (and nicer pages with css and stuff...) then I think I'll switch for good.

      --
      Sig matters not. Judge me by my sig, do you?
  8. This could backfire by Animats · · Score: 3, Interesting

    With Google's "Accessable search", sites will be able to tell from their weblogs how many visitors are coming in via the "accessable search" route. So it will be possible to figure out the financial benefit of web accessability. If it turns out to be low, even for pages that Google thinks are "accessable", there's a business case for not bothering with "accessability".

    1. Re:This could backfire by Anonymous Coward · · Score: 0

      Nice thinking!

    2. Re:This could backfire by TheRaven64 · · Score: 1

      Good point! Don't forget to factor in the cost of prosecution under anti-discrimination legislation if you plan on doing business somewhere like the EU or USA which makes accessibility a requirement though...

      --
      I am TheRaven on Soylent News
    3. Re:This could backfire by Anonymous Coward · · Score: 0

      sites will be able to tell from their weblogs how many visitors are coming in via the "accessable search" route.

      Sites can't tell how many visitors are coming in full-stop. Visitor counts are snake oil.

      So it will be possible to figure out the financial benefit of web accessability. If it turns out to be low, even for pages that Google thinks are "accessable", there's a business case for not bothering with "accessability".

      The financial cost of web accessibility, for the vast majority of websites, is zero. So accessible websites would actually have to cause harm to not be worthwhile. And even in the cases where accessibility costs money, I doubt it will cost as much as being sued and having to do the accessibility work anyway - you are aware that a lot of countries require accessibility by law?

    4. Re:This could backfire by BalanceOfJudgement · · Score: 2, Insightful

      In fact, the opposite seems to be true - the Olympics was successfully sued over their website being inaccessible, and so was Target. As a consequence, it seems, more and more business are finding reason to make a case for web accessibility - whether they consider themselves a target or not.

      --

      We are the fire that lights our world.. and we are the fire that consumes it.
    5. Re:This could backfire by Anonymous Coward · · Score: 0

      There are as many blind people in the world as there are Brazilians (~160 million, see epidemiology section of Blindness entry on wikipedia). Many of these people use the internet. It doesn't make business sense to ignore such a large segment of the population.

      MC

  9. w00h00 - text-based search engine by guruevi · · Score: 3, Funny

    Finally I can start using Links2 or even Lynx to start browsing or any other curses based browser... mmm... gopher. Will work perfectly with my pine mail and telnet based IRC.

    I really commend google for providing us and maybe even forcing webdevelopers to use decent, W3C compatible standards. This means soon enough, we'll have websites that aren't IE compatible.

    --
    Custom electronics and digital signage for your business: www.evcircuits.com
    1. Re:w00h00 - text-based search engine by BalanceOfJudgement · · Score: 1
      This means soon enough, we'll have websites that aren't IE compatible.
      Ah ha! So that's Google's master plan! Pretty good plan if you ask me.. make the web better AND get rid of Microsoft.

      I like MS technologies as much as the next guy (.NET has some pretty good stuff) but.. I think they're a dinosaur and dinosaurs tend to stifle innovation.
      --

      We are the fire that lights our world.. and we are the fire that consumes it.
    2. Re:w00h00 - text-based search engine by Anonymous Coward · · Score: 0

      I already use lynx 99.9% of the time, since it comes in the OpenBSD base install, and it works fine with many content-oriented sites. Stuff like myspace and all that, I don't care about...
      Ironically to post on /. you have to use a graphical browser (to post anon at least). But links2 works well enough there.
      I got firefox installed but never use it. It's bloated and slow, and can't be easily navigated with just the keyboard. At least not as well as lynx or links. Adn you can't run it in a screen session, etc. I use it only for online banking, and that's it. For some reason banks wesites don't tend to have very portable html. I've yet to see one that works fine in lynx/links, even though both of these browsers can handle SSL and cookies just fine...

  10. Too good to be true by Anonymous Coward · · Score: 0

    Unfortunately, it will soon be spamdexed. As another poster suggested, even sighted people will use it because it will be less likely to contain spam. So the spammers will pounce on it and fill it with their useless crap. I don't think the big name companies like Coke, Adobe, Microsoft, etc. will do it. But you know those weird jibberish websites will.

  11. No sponsored links by martinag · · Score: 2, Interesting

    It seems I'm not being served any sponsored links on this one. Nice. I also note that searching for "white house" will put the Wikipedia article above the official home page, as opposed to what happens on the regular search.

  12. this is good not only for... by vindimy · · Score: 2, Insightful

    blind people. i think we all can benefit from this simple and straightforward representation of search results. i actually like the new accessible interface. it was a kind decision by google to not put any ads in their accessible search. i think more people will use the google accessible search than just the blind people.
    so, has anyone tried using any of the screen reading software to test whether search results are actually readable without looking at the screen?
    and also what about keyboard shortcuts? since blind people can't use mouse, there must be some other way for them to find a search box / search result, right?

  13. Opportunities for the blind by krell · · Score: 1, Informative

    There are always sites like www.aintitcool.com that prove that some places are willing to give employment opportunities for the blind by letting them engage in web site design.

    --
    Where were you when the voynix came?
  14. Google Accessible in not according to W3C standard by giriz · · Score: 4, Interesting
    --
    I don't want a signature.
  15. Image ALT Tags by TheNinjaroach · · Score: 1

    Image ALT Tags are useful for more than text-based browsers - they also help blind users surf the web. When images are used as links, the ALT text can help a blind user know what they're getting into before following the link. ComputerWorld had a decent article on websites and their accessibility - they found that most online shopping websites (Like Target or Walmart) don't have any helpful information in the filenames or ALT tags of their images, making it much harder to shop online.

    --
    I went to eat some animal crackers and the box said, "Do not eat if seal is broken." I opened the box and sure enough..
    1. Re:Image ALT Tags by Bogtha · · Score: 1

      There's no such thing as an alt tag, alt is an attribute. Not everything remotely related to the web is called a "tag".

      As for online shopping, Tesco's accessibility improvements earned them £13m per annum - accessibility can be a source of profits, not a cost.

      --
      Bogtha Bogtha Bogtha
  16. Google InAccessible Search Released by Anonymous Coward · · Score: 0

    Is it just me or is the server reporting that the URL can not be found?

  17. AdWords by blacknblu · · Score: 1

    I wonder if this will impact the paying advertisers. As long as your money is green, you can cut to the beginning of the line.

    --
    "Does this wine taste funny to you?" -- Socrates
  18. Wondering? by Anonymous Coward · · Score: 0

    How will people make P$RON more accessible. :)

    Anon /. It has to be FUNNY +5 or /. readers need to read use the new google tool

  19. What was that again? by nick1000 · · Score: 0, Redundant

    Apparently Google accessible search(GAS) is not that accessible.
    http://www.google.com/u/accessible?cx=accessible!& q=google+accessible+search&btnG=Search

    Assuming that this actually works and GAS is easy to use for the disabled then shouldn't it return itself as a top result.

  20. Re:What? by illuminix · · Score: 4, Interesting

    My son is blind. He uses the web with a reader, and loves google. He searches for music, among other things. It's pretty amazing how effecient he is with it, given he can't see. Some sites work better than others. It is possible to optimize a site for the blind. You're ignorant.

    --
    http://cubemonkey.net/quotes -- fortune-mod quote generator
  21. Re:Google Accessible in not according to W3C stand by Anonymous Coward · · Score: 0

    The irony is, its pretty damn close. None of the errors on that page would require more than 5 minutes to fix. Its all minor syntax crap.
    Trying a search does significantly worse, although there are probably only 20-30 unique errors and the rest are repetitions.

  22. Damn, I'd better get to work updating my site! by Anita+Coney · · Score: 2, Funny

    From what I've read of the guidelines, my website gopher://gopherrulez.org just won't cut it!

    --
    If someone says he and his monkey have nothing to hide, they almost certainly do.
  23. are you blind? 12? just dumb? by Anonymous Coward · · Score: 0

    I'm guessing from reading the shitty grammar and speeeeelllng in your post that you're part of the vast untapped RETARD-AMERICAN market in need of this service. Indeed, the best ever for fuckstains like you!

  24. Re:What? by Anonymous Coward · · Score: 0

    I think the GP was going for a porn joke (but failed).

  25. Re:What? by Arker · · Score: 4, Insightful

    Optimizing websites for the blind is about as intelligent as optimizing music for the deaf...

    That's utter nonsense. First off, you think blind people can't process information? WTF?

    Second, it's not even about 'optimising for the blind' so much as simply 'using (rather than abusing) the web.' The web was designed from the start to deliver information in a neutral format so that the user-agent (browser) could then deliver that information appropriately. This may mean laying it out on a screen (of unknown dimensions and capability,) or it may mean speaking it aloud, or whatever. Proper web design is accessible to everyone. The errors that make sites inaccessible to the blind are the same errors that make them annoying and sometimes unusable to the rest of us as well.

    Keep in mind that you cannot dictate layout and use html properly and you'll have no problem. Ignore that fact and you shut out a lot of people, not just the blind.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  26. Re:What? by Anonymous Coward · · Score: 0

    You are a complete dumbass.

    If you do believe that, then you need to be put in a mental institution.

    If it is what you say, then slashdot isn't for you because slashdot must not be "optimized for dumbasses that deserve to die."

  27. targeted marketing... by saleenS281 · · Score: 1

    So does this mean instead of "grow your manhood in just 2 weeks with these pillZ" they're going to get "get your eyesight back in just two weeks with these sweet pillZ"?

  28. Perfect application! by KrugalSausage · · Score: 2, Interesting

    Has anyone ever had the problem of trying to find song lyrics and being bombed with pages full of nonsence?! First time I tried with this interface I got the exact results I was wanting. So I know now that this is better for lyrics... what else would it be better for?

  29. This may even be used to prevent blindness.. by brainnolo · · Score: 1

    Given the amount of flashy sites around here it could almost prevent blindness

  30. For Thruly accessible webpages by guabah · · Score: 3, Interesting

    The w3c check is not an acurate measure on how thruly accessible the pages are

    I now this because I have friends who are blind and frecuently use screen reader applications

    If you really want to make sure your pages are accessible then download the trial version of Jaws for Windows wich is the defacto standard screen reader. This trial is limited to 40 minutes per session, but those 40 minutes should be enough to test your webpages.

    As mentioned in posts above, make sure the content can be reaced quickly by readers.

    1. Re:For Thruly accessible webpages by Bogtha · · Score: 4, Insightful

      The w3c check is not an acurate measure on how thruly accessible the pages are

      I now this because I have friends who are blind and frecuently use screen reader applications

      Yes and no. On the one hand, WCAG does have acknowledged shortcomings and it's certainly no guarantee. But aural browsers and screenreaders tend to be absolutely awful when it comes to supporting the markup that's intended to help them. They aren't designed to read accessible websites, they are designed to scrape as much meaning as they can out of inaccessible websites.

      So from a practical perspective, yes, you need to test in individual assistive user-agents if you want your website to be as usable as possible by disabled people. But when the markup is fine according to the W3C and assistive user-agents get it wrong, it's usually because the developers of the assistive user-agents haven't even heard of the W3C.

      --
      Bogtha Bogtha Bogtha
  31. natural progression by pockyninja · · Score: 1

    So of course the first thing I thought of:
    http://photos1.blogger.com/blogger/687/3313/1024/s creenshot_004.jpg

    Not trying to be a jerk, I really was just wondering what would come up. This is a very interesting search function.

  32. Re:What? by Rifter13 · · Score: 3, Informative

    When I worked for Albertsons.com, we accidently created a site that worked well for the blind, and even received some recognition for it. After the initial release of the site, and finding out how some blind people were using it, we actually had a lady talk to our develoment staff about optimizing the site even further, which we did.

    It is a VERY good feeling to have, when someone that is in their 40s tell you how grateful they are for your service, since it is the first time in her life, she was able to actually shop for groceries. Adding alt text to images, that TELLS people what the image is, is a huge help. It is very simple things, that you do in HTML to make it possible. If you go in aiming to create well-formed HTML, you are about 80% there, by default.

  33. Great by kurtis25 · · Score: 1

    This is very good and useful for the sight impaired and for those who like to avoid websites which are design impaired. I do however wonder how relevant this is, I could achieve similar results with an RSS reader, Firefox and/or a few GreaseMonkey Scripts. Compared to a normal webpage it would seem easier for the Reader to speak the print version so I could use the Firefox extension that forces CNN stories to open in print view. I could also subscribe to just their RSS feeds and get the stories I want on text only pages; the same is true of blogs. I'm sure there would be a way to add RSS feeds to lyric websites, and then Google could put an RSS feed search together. This seems like a better (more forward thinking solution). *disclaimer I have never used a reader nor am I a web guru this is an idea.

  34. Google.com not accessible by Anonymous Coward · · Score: 0

    If you search for "google" on http://labs.google.com/accessible/ it does not show up. In fact, a search for "google accessible" does not find the google accessible page.

    Natural conclusion: Google accessible is not...accessible :o

  35. Wrong by Supersonic1425 · · Score: 2, Interesting

    A common misconception is that website accessibility only benefits blind people. Accessible, semantically-structured websites are good for many things, most notably Search Engine Optimisation and cutting down on bandwidth. How's that for financial benefit?

  36. ADA does not require accessable private websites. by Animats · · Score: 2, Informative

    The Olympics was an Australian case. Target was not "successfully sued"; that's still pending. Southwest Airlines won a case over that issue, Access Now vs. Southwest.; their "virtual ticket counter" does not have to be handicapped-accessable. Access Now appealed, and the Court of Appeals for the Eleventh Circuit rejected the appeal. That's the only final US court decision on the subject to date.

    As the court put it, it's up to Congress to change the ADA if Congress wants it to apply to the Internet.

  37. Porn? by chis101 · · Score: 0

    I bet porn for blind users isn't quite as good.

  38. Re:ADA does not require accessable private website by BalanceOfJudgement · · Score: 1

    Nothing in your parent post mentioned the US specifically at all. So why are you now using that to make your case for why accessibility doesn't matter? Just because the US hasn't specifically passed legislation addressing the issue doesn't mean it isn't one.

    The point I was trying to make is that it would be shortsighted and possibly very stupid for major companies to be ignoring web accessibility.

    --

    We are the fire that lights our world.. and we are the fire that consumes it.
  39. "Tab order" for links? by Anonymous Coward · · Score: 0

    I'm not visually or manually impaired, but I did wonder when my mouse recently stopped working, and I had to rely on keyboard alone -- why does the layout of /. mean that I have to hit TAB dozens of times, rolling down through the sidebars on both sides, before the browser will select the first article? I'm pretty sure it is merely a side-effect of the arrangement of the HTML (i.e. the default tab behaviour in the same order), but is there a way to override this and designate the "tab order" of links, kind of like fields in a database form? I expect this could be very helpful for people using some types of interfaces. (And, yes, I realize the behaviour is somewhat browser-dependent, but I'm talking about "hints" in the HTML that could be applicable for a variety of software tools.)

    I'm looking through the W3C guidelines on this subject now, but they are rather long enough that it will take me a while. If anyone knows the answer, I'd appreciate it.

    1. Re:"Tab order" for links? by WerewolfOfVulcan · · Score: 2, Informative

      Actually, many modern screen readers have the capability of analyzing the HTML document and creating an alphabetical list of the links on the page that they can navigate.

      Here's a list of Features and Enhancements for the latest versions of JAWS (a widely used screen reader). Reading through them will give you some idea of how screen readers operate. There's a lot more to it than you think.

      Here's a clip from one of them:

      HTML and the Internet
      Improved Performance on the Web

      With the new Internet and HTML support in JAWS 7.10, you will experience increased accuracy, improved navigation, and better text recognition when reading Web pages or other virtual documents.
      Visible Focus Rectangle

      When you press TAB or SHIFT+TAB to move to links and buttons in Internet Explorer and Firefox, the focus rectangle is now visible. This rectangle is useful to sighted users because it visually indicates the location of the cursor. The focus rectangle does not move when you use the arrow keys or Navigation Quick Keys to read.
      Route the Virtual Cursor to the JAWS Cursor

      You can now press INSERT+NUM PAD PLUS in Internet Explorer, Firefox, and virtual documents to route the Virtual Cursor to the mouse pointer. Using this command moves the Virtual Cursor to the current location of the mouse pointer and can help sighted users navigate Web pages. In addition, routing the JAWS Cursor to the Virtual Cursor (INSERT+NUM PAD MINUS) is much more accurate and moves the mouse pointer to the exact character the Virtual Cursor is located on.
      Route the PC Cursor to the Virtual Cursor

      You can now press CTRL+INSERT+DELETE in Internet Explorer, Firefox, and virtual documents to route the PC Cursor to the Virtual Cursor. Using this command moves the PC Cursor (and the application focus) to the current location of the Virtual Cursor. Visually, the page will scroll so that the area containing the Virtual Cursor is visible on the screen. This command is the opposite of the Route Virtual to PC Cursor command (INSERT+DELETE).
      One Setting for Controlling Page Refreshes

      There is now only one setting for controlling page refreshes. Previously there were two settings, one for controlling page refreshes caused by the browser, and another for controlling refreshes caused by embedded ActiveX controls, such as Macromedia Flash. These have been consolidated into a single option for controlling both since it is often not apparent which is causing the page to refresh.
      Improved Detection of Dynamic Page Updates

      Previously, if script code was used on a page to control visibility without the user actually interacting with the page, JAWS would not detect the page update and would either show content that was not really there or not show content which was made visible. This should no longer occur.
      Enhanced Screen Tracking

      The screen no longer scrolls up or down erratically while you are using the Say All command or navigating by other means. The screen only moves when the content about to be read is not visible.
      Document Presentation Mode Line Length

      You can now define how long a single line will be when viewing an HTML page in Document Presentation Mode. This can help you read lengthy tables easier because all the content from each row in the table can fit on a single line. The increased line length stops JAWS from rendering rows across multiple lines. When you exit Document Presentation Mode, JAWS will render the page using the normal maximum line length.

      The default line length in Document Presentation Mode is 400 characters, which is enough to fit most table rows on one line. To change the line length, open the Utilities menu and choose Configuration Manager. Then, open the Set Options menu and choose HTML Options. Enter a new line length in the Document Presentation Mode Maximum Line Length edit box located on the Text tab.

  40. Finally... by tenco · · Score: 1

    a slap in the face of Macromedia Flash.

  41. ie - fiefox by NaeRey · · Score: 1

    Just noted that when you search for Internet Explorer, it returns as 3rd:
    Mozilla Firefox
    Official site of the open-source browser. Includes product downloads, release notes, features overview,...
    www.mozilla.com/firefox/ - 14k - Cached - Similar pages

    unlike normal google.. ?

  42. Google Suggest (Skor: +5 Hopefully Funny) by in_repose · · Score: 1

    But will this accessible search come with the SUGGEST flavor?

  43. Re:Google Accessible in not according to W3C stand by Anonymous Coward · · Score: 0

    That is because google aims for overall compatability, that often means using dated markup and various standards violating hacks to ensure compatability with all major browsers. In a perfect world HTML would be standardized, but in this reality its not even close.

  44. Re:Google Accessible in not according to W3C stand by Rigrig · · Score: 1

    But to be fair, Google Accessible doesn't find itself either: http://blog.outer-court.com/accessible/?q=google (don't even try 'search engine'...)

    --
    **TODO** [X] Steal someone elses sig.
  45. Re:What? by Anonymous Coward · · Score: 0

    Do you have some hints? As much as I love reading a formal spec, I'd like to know in the real world which things should be avoided, and which things are absolutely critical to have.

  46. Works in a strange way... by Anonymous Coward · · Score: 0

    I have a three-letter-acronym website URL in a particular country. Something like www.foo.xy.

    The main google search for "foo" places it as the seventh result; that's quite an accomplishment, given that Google knows of 900.000+ instances of "foo" on the web.

    The foo site is standards-compliant, well-structured, semantically thought-out, and a lot of work has been put into accessibility. Two blind persons told me this was one of the friendliest sites they've ever visited.

    Google's Accessible Search places "foo" on second place. It was "beaten" by a site that uses tables for layout, doesn't validate, is full of font elements scattered around, has an inaccessible image map, has about 10 KB of meta-tags...

    Just thought I'd share this curious tidbit with you.

  47. Looks like 1 in 9 sites makes the cut by Tsu+Dho+Nimh · · Score: 1
    I ran some searches for terms likely to have a mix of professional and amateur designers. With the 5 searches I did, it looks like 1 site of nine is good enough for the Google Accessible search.

    So the question is: how many web designers will wake up and smell the alt text?

  48. Running it through RAAKT yields more errors by StandardsSchmandards · · Score: 1

    Running their search interface through the Ruby Accessibility Analysis Kit (http://peterkrantz.com/bacc/) yields more errors:

    missing language info, missing headings, using markup not compatible with semantics.