Items tagged with: ARIA

Search

Items tagged with: ARIA


Hits from my Tuesday morning inbox:

1. An unsupervised, LLM-generated, and hence completely useless set of recommendations about how to implement #accessible hovercards.

2. An email suggesting that accessible websites are ugly websites, and therefore we need some sort of cookie in everyone's browser describing what access technology they use so they can be directed into the appropriate "ghetto". This was sent to the #ARIA Authoring Practices mailing list for some reason.

Considering going back to bed.

#accessibility


FediLab nutze ich hauptsächlich, weil es sich die Position in der Timeline merkt, man also nicht dauernd hoch und runter scrollen muss, und weil man bequem von Liste zu Liste wischen kann.
Und für mich ganz wichtig, Multiaccountfähig mit Accountübergreifenden Funktionen, z.B. mit Account A einen Post lesen, ihn aber mit Account B favorisieren etc. ohne den Account wechseln zu müssen...
Hauptsächlich nutze ich aber #Aria
#aria



Für den Misskey Fork #Sharkey, mit dem ich ganz zufrieden bin, nutze ich die App #Aria, @aria_app@misskey.io

Ich glaub, ich hab noch keine andere #FediVerse App gefunden die so gut zu meinen Bedürfnissen passt und so umfangreich konfigurierbar ist.
Würde mich interessieren, ob sie auch für #blinde Menschen nutzbar ist...




I don't know how many times we have to say this. Last I counted it was 1.2 million times and almost 20 years.

"Developers should always prefer using the correct semantic HTML element over using ARIA."

developer.mozilla.org/en-US/do…

#webdev #javascript #html #webdevelopment #a11y #aria


Not so short note on aria-label usage – Big Table Edition

“aria-label is one of a number of secondary methods to label native HTML UI elements. It works particularly well on interactive elements, it also works well on most block level elements old skoolterm that have explicitly or implicitly defined structural roles. It works less well or not at all on text level semantics.”

#aria #HTML #accessibility #WebDev

html5accessibility.com/stuff/2…


✍🏽 drugs button popover - updated October 1 2024

"Several people have questioned my reasoning for writing about the use case of popover as a tooltip, no I was not on drugs, at the time of writing I noticed that GitHub was using popover as a tooltip"

#accessibility #HTML #ARIA

html5accessibility.com/stuff/2…


Anyone running macOS 15 and want to test to see if this `aria-activedescendant` bug is really fixed?
bugs.webkit.org/show_bug.cgi?i…

It’s not that I don’t trust Apple folks, it’s just that I have learned never to take the “Fixed!” assertion at face value.

#a11y #accessibility #Safari #ARIA









🤡 The wrong way to use aria-roledescription to call out someone as a fascist:

html5accessibility.com/stuff/2…

#a11y #webDev #politics #ARIA
[share author='stevef' profile='https://html5accessibility.com/stuff/author/stevef/' avatar='' link='https://html5accessibility.com/stuff/2020/10/06/micro-note-on-aria-roledescription/' posted='2020-10-06 13:28:50' guid='81daf735-8b2361906e7d629a-214181df' message_id='https://html5accessibility.com/stuff/2020/10/06/micro-note-on-aria-roledescription/']aria-roledescription is not a label

It is an alternative expression of the Aural UI of the role of an element.

inappropriately using aria-roledescription may inhibit users’ ability to understand or interact with an element.
ARIA 1.1

The wrong way to use aria-roledescription and call out someone as a fascist:

code

<img aria-roledescription="fascist" src="dt.PNG"
alt="Donald Trump">

This is wrong because you are not identifying the subject of the image as a fascist, you are overwriting the <img> element role so it effectively becomes a <fascist> element. Also, there is no explicit text identification of the subject as a fascist.

A much better way to achieve the aim of identifying a fascist (and not misusing aria-roledescription):
Example of a fascist
code
<figure>
<figcaption>Example of a fascist</figcaption>
<img src="dt.PNG" alt="Donald Trump">
</figure>

html5accessibility.com/stuff/2…