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