What fresh hell is THIS now? - Patrick Lauke
[karlgroves] Also, FWIW I think you’ve done a good thing by declaring the file type in the link
"linkname (PDF)”
[karlgroves] I know these answers aren’t really helpful, in terms of being directly actionable.
This 3rd party that did the accessibility review did a poor job (unless the client was super-hardcore about adhering to the letter of 508, which I’ve seen)
You can directly address this by adding a blurb somewhere on the page - or even on its own page - that has a link to PDF reader. Some people put it in the footer. Some people put it at the end of the content. None of these are ideal, really. But let’s face it, the truth is - as Matt mentioned - all Operating systems and browsers can handle PDFs, and even if a PDF reader isn’t installed the browser will often handle sending the user where they need to go
[alexlande] does anyone know if there are cases where <img src=‘foo.png’ alt />
is treated differently than <img src=‘foo.png’ alt=’’ />
?
(I ask because React automatically converts the empty string to a boolean, and I’m not sure if I need to do something about that. The boolean seems to work OK on VoiceOver and TalkBack, at least.)
setAttribute()
will make it a "boolean" in the markup
<dialog>
which is being implemented in gecko (!!)
[alexlande] > via setAttribute()
Oh, right. I didn’t think about it, but that’s all React is doing under the hood. Thanks @alice, makes sense to me thumbsup emoji
focusable=‘false’
on all of our SVGs. Otherwise tabbing is really annoying for IE users