blob: 8b416cf88213f365577961257020b7148c5521fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<button
onclick="this.setAttribute('aria-expanded', this.getAttribute('aria-expanded') == 'false')"
aria-expanded="false"
>
button
</button>
</body>
</html>
|