If I press command-v, for paste in the "dvorak-qwerty command" layout, I expect the textarea to execute paste. Instead, it puts backticks around the current selection. Pretty much every other command is similarly mangled. It wouldn't be so bad if SO used a different key than command for the keyboard shortcuts, but in this case, I cannot copy or paste into the textarea with the keyboard at all (I have to use the mouse).
After a period of investigation (including looking at the WebKit source), I have determined the likely cause. The editor should be looking for keypressed events instead of keydown events to determine the key equivalent for a command. In Webkit, the code path for keydown and keypressed are different and return different results for keydown vs keypressed.
Let me know if this describes what the editor is doing.
Possibly related issue: http://meta.stackoverflow.com/questions/2051