| <body> | |
| <style> | |
| #multiReasonBtn:hover { | |
| background-color: blue; | |
| } | |
| </style> | |
| <button id='multiReasonBtn' contenteditable='true' style='cursor: | |
| pointer;' role='menuitem' aria-haspopup=true tabindex='0'> | |
| Multi-Reason Button | |
| </button> | |
| <div aria-expanded=true></div> | |
| <div aria-expanded=false></div> | |
| <script> | |
| const btn = document.getElementById('multiReasonBtn'); | |
| btn.onclick = function(){}; | |
| btn.onmouseover = function(){}; | |
| btn.onmousedown = function(){}; | |
| btn.onkeydown = function(){}; | |
| </script> | |
| </body> |