RE: ARIA roles added to the a element should be conforming in HTML5.

Nick,

good point. In my opinion the ARIA role should always reflect what the element DOES with respect to functionality in a given context and not only what it actually looks like.

Of course I could say now why haven't you taken an <a> instead? *smile*

- Stefan

-----Original Message-----
From: wai-xtech-request@w3.org [mailto:wai-xtech-request@w3.org] On Behalf Of Nick Fitzsimons
Sent: Mittwoch, 21. Oktober 2009 16:45
To: Tab Atkins Jr.
Cc: Shelley Powers; Steven Faulkner; Lars Gunther; HTMLWG WG; W3C WAI-XTECH
Subject: Re: ARIA roles added to the a element should be conforming in HTML5.

2009/10/21 Tab Atkins Jr. <jackalmage@gmail.com>:
> Sometimes making a link into a button seems to be the correct choice.
> If I want the styling of a button, but I want clicking it to just
> navigate you to another page, I can restyle an <a> to look like a
> button, or I can insert a <form action><button type=submit></></> and
> style the form away.  The latter feels like a dirty hack.  (I've used
> it, once, but only at the very very beginning of my webdev career when
> I didn't fully understand how urls and query params interacted.)
>

In that case you are visually styling a link to resemble a button, but
its functionality is still that of a link, so it would be incorrect to
give it a role of "button": the role describes what something does,
not what it looks like.

Similarly, if I were to lose my mind and produce something like:

<button type="button"
onclick="self.location.href='http://example.com/'">Go to
example.com</button>

then it would be appropriate for me to give the button an ARIA role of
"link", as it is acting like a link and not a button.

Regards,

Nick.
-- 
Nick Fitzsimons
http://www.nickfitz.co.uk/

Received on Thursday, 22 October 2009 07:37:31 UTC