How come there is no proper HTML dropdown component that displays a system menu when clicked?
By system menu, I mean how it looks when you right-click, but I'm specifically looking for left-click menu.
We have `<select>` for selections, but nothing to pop up a dropdown with actions. I'm aware I can hack `<select>` to do that. That's exactly what I did. But it's ain't easy or pretty.
And no, not `<dialog>`.
@sindresorhus I suppose the w3c thought that “actions” in HTML are semantically links. I’m not sure.
When you add JavaScript to the mix then, yeah, event listeners on select is probably the closest appropriate.