blob: a6900be862987e8bbe9b5d213e38b49b3941a4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!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>
</body>
</html>
|