I am working on a web application that offers, essentially, Diff for legal documents. That is, it can show changes to legal documents over time in a similar way to a graphical Diff utility.
It uses a wide range of text styles, more than my example - at least 3 colours, and strikethrough - to convey meaning. I'd like advice about how to implement this as accessibly as possible. The markup will probably be fairly unsemantic, something like
<span class="col-repealed">The Commissioners before whom an appeal under this section is brought</span> <span class="col-inserted">On an appeal that is notified to the tribunal</span>, the tribunal must consider whether the registration of the pension scheme ought to have been withdrawn.
I will be testing with colour blindness simulators to ensure the colours are all adequately differentiatible. I am also planning to create a black-and-white print stylesheet (where I'd probably change colours to various underline or outline styles, and also print a key to the styles.)
I'm wondering about users of screen readers though. I believe this calls for an aural stylesheet, with different voices standing in for different colours. I've never done aural stylesheets before. Are they well enough supported to be worth the effort? Are there other things I could or should do? (E.g. title attributes on the spans)
Let me preface this with the fact that I am a long time Jaws user but do not have much web development experience. Currently no screen readers other than Emacspeak support Aural Style Sheets as far as I can tell based on some quick research. Since Emacspeak is written primarily by a blind programmer for other blind programmers I don’t think you would have success requiring blind users of your application to use it.
A possible solution may be to use images with alt tags. I’m not sure if you could create single pixel images that aren’t visible or if you would have to make the use of images a toggle in your application. I’m thinking of something like the following.