Earlier quoted context omitted.
I just ran into this very problem. My workaround includes checking the window width with JQuery and changing the fixed status box (originally on the right side of the page) to floating at the top should the width be below a certain margin. Is this an acceptable solution? (I am just beginning web dev in lisp)
I think you can get the right result with a media query, assuming those are recomputed on zoom, which they should be.
Tota11y
41–50 of 93 posts
Re: Tota11y
#42Earlier quoted context omitted.
I believe one of the reasons for preventing zoom-in is because it plays havoc with any element that is "fixed" in your browser (ie pretty much every nav bar/fixed header you'll ever encounter).
How? It should just zoom the viewport, there's no reason for any of the DOM elements to even be aware that it's happening. Or has this been implemented in a really stupid way?
Would love to hear from someone who's actually familiar with what's going on though.
[0] http://updates.html5rocks.com/2012/09/Stacking-Changes-Comin...
[1] https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Under...
Re: Tota11y
#43Having an tag below an tag is an accessibility concern? What does incrementally decreasing in heading size have to do with accessibility?
That said, while it's a best practice to keep headings in a sensible order, skipping heading levels is not a WCAG AA violation.
Re: Tota11y
#44I am surprised the tool doesn't do any color blind checking (ie putting red and green next to each other is generally not a good idea).
Re: Tota11y
#45I am surprised the tool doesn't do any color blind checking (ie putting red and green next to each other is generally not a good idea).
I've heard of some ways to visualize this with SVG filters - so this will be coming soon.
Still thinking of creative ways to find and label the errors, rather than just showing the user how the page will look under a certain type of color-blindess.
Re: Tota11y
#46It looks very similar to this tool: https://squizlabs.github.io/HTML_CodeSniffer/ Very handy having things like these as bookmarks.
HTML_CodeSniffer is significantly more comprehensive than tota11y, so I encourage everyone reading this to also check out corney91's link.
tota11y takes more of a visualization approach, because in our experience being greeted with several dozen errors which we've never seen before didn't motivate us to keep the site accessible. My aim was to make the experience more interactive while explaining errors (and fixes!) as best I can.
We're still figuring out where tota11y fits in this great big world of a11y testing, but so far folks have responded well to this approach.
Re: Tota11y
#47Earlier quoted context omitted.
If zooming is disabled, the browser can respond to clicks without a 300ms delay since it doesn't have to wait for a double-click zoom. It seems like the best solution to this problem would be to make a global toggle in settings.
Alternately, you can just require multitouch zoom and get rid of the antiquated notion that you can double-click to zoom.
Re: Tota11y
#48I built this utility with the help of two colleagues[0][1] after working on accessibility at Khan Academy for a few weeks, and seeing first-hand the process of evangelizing accessibility on a dev team. Our automated tests were far from approachable (and became more annoying than helpful), so we built tota11y to make the manual testing experience more interactive and educational (we like teaching things).
I touch on this in our engineering blog [2]
Anyway, super thrilled to see tota11y near the top of HN this morning, and happy to answer any questions you may have.
[0]: https://twitter.com/himichelletodd
Re: Tota11y
#49Hey HN! I built this utility with the help of two colleagues[0][1] after working on accessibility at Khan Academy for a few weeks, and seeing first-hand the process of evangelizing accessibility on a dev team. Our automated tests were far from approachable (and became more annoying than helpful), so we built tota11y to make the manual testing experience more interactive and educational (we like teaching things). I to…
Re: Tota11y
#50Maybe I'm in minority, but I'd have preferred a userscript/extension alternative for those who don't use a bookmarks bar. edit: Never mind, made a quick one for myself seeing that's MIT licensed https://gist.github.com/liviu-/62e8ce91b8723ef1a10a
Userscript is an awesome idea, thanks for taking the time to build this out. Is this something that will work in all browsers? What's the installation process like? Perhaps we can build one of those into the project page as well.