blob: f30951ff837221e25e38d3c8b8f93486631a94b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<ul style="list-style-type: none" role="listbox">
<li
id="li"
role="option"
onclick="this.setAttribute('aria-selected',
this.getAttribute('aria-selected') == 'true' ? 'false' : 'true')"
>
1
</li>
<li role="option" aria-selected="false">2</li>
</ul>
<li id="outsideSelectable" role="option" tabindex="0">
outside selectable
</li>
</body>
</html>
|