I've noticed that the WMD control does not respond to Cmd+B for bold in Safari 4 on OSX. (Problem with both Leopard and Snow Leopard. Also an issue with webkit nightlies) The correct keystroke is Cmd+B, not Ctrl+B.
I've looked at the code for this:
util.addEvent(inputBox, keyEvent, function(key){
// Check to see if we have a button key and, if so execute the callback.
if (key.ctrlKey || key.metaKey) {
I've done some limited searching, and metaKey is supposed to be true when the Cmd key is held. Oddly enough, Firefox 3 in OSX responses correctly to Cmd+B but Safari 4 does not. Google Docs responds correctly to Cmd+B, so it's possible to use the Cmd key in Safari 4, so I don't think this is an issue with Safari.
This issue happens with the WMD control from the git repository, not just the one on Stack Overflow.