We have flash videos served on our website and I have noticed that the window.print() call does not work when the flash file is playing or paused. However, if you skip to a point in the video using the seek bar it will trigger the native Chrome print preview window to load, so it seems as though something is blocking this event from being exectued. No other javascript is blocked by the video so maybe this is a bug in Chrome.
We are executing the very simple script in an onclick event attached to a anchor tag
window.print(); return;
Does anyone know of any events that would block this event from bubbling in Chrome or whether this is a bug?