What fresh hell is THIS now? - Patrick Lauke
display: none
or be hidden by other means
aria-label
attribute with text for the anchor.
<input type="submit">
;)
:target
[jitendra, a11y] each button will be associated with a unique url
to assist with normal loading and push state
and the data will be lazy-loaded
because it can be a lot of data'
role="button"
or make it an actual button; I'd recommend the latter for obvious reasons.
tabindex=0
if you remove the href
to keep it tabable :)
<a>some text</a>
is valid html, it's not focusable, but <a tabindex="0">some text</a>
is.
<a tabindex="0" role="button">some text</a>
it is essentially the same as <button type="button">some text</button>
; expect for spacebar control, so you should add that!
href
can be removed from a
a[href]
, not just a
<div role="row row row your boat">
8)
<div role="stop hammer timer">
!
@jitendra
If the a element has no href attribute, then the element represents a placeholder for where a link might otherwise have been placed, if it had been relevant, consisting of just the element's contents.
<button>
can load a url when js is disabled
@Michiel psychokillers do
I do not smile like that!
the main/landmark one? I think I have to reboot to test it, orca runs now in my processes but went silent on me :)
yup
@MichielBijl the update i have notmade yet is for ios 9.0.2
so a table, where "landmark" column is the names (test1, test2) and the next column called Role and calls them "section"
??
But role section doesn't exist :o
it does exist in iA2/ATK/AT-SPI but is not same as html5 section
DOM Inspector 2.0.16 by SeaMonkey Council
But role section doesn't exist :o
it does exist in iA2/ATK/AT-SPI but is not same as html5 section
alt="Embedded image permalink”
region is default for section
for HTML <section> element yes
Wonder why that is different.
iOS lags behind OSX
autofocus
.
autofocus
attribute and let that take focus instead…I am just trying to understand the scope of the issue as it pertains to mouse-vs-keyboard users/focus states/what to focus on
autofocus
…which work unless you stomp over them with custom focus management :neutral_face:
autofocus
support and CSS Input Modality so focus is only shown for keyboard users