This is source code for exit from fullscreen mode:
var cancelFullScreen = document.webkitCancelFullScreen || document.mozCancelFullScreen;
cancelFullScreen.call(document);
it's works correctly when i enter fullscreen using function startFullScreen, but don't work after pressing F11 key - browser won't exit fullscreen mode. Browsers Chrome 18 and Firefox 12. Why it's happens? Is it bug, security restriction or some other? Is it possible to fix it?