Ok, I think I can make WebKit browsers crash live right here :-( Just click stop while the player is fullscreen (toggleFullscreen does not seem to work?).
HTML setup for the player
<!-- include latest Flowplayer javascript file -->
<script language="javascript" src="path/to/flowplayer-3.2.6.js"></script>
<!-- player container with optional splash image -->
<a href="path/to/video_file" id="playerContainer">
<img src="path/to/splash_image" />
</a>
JavaScript coding
Following script will install Flowplayer into our player container
<script language="javascript">
// our custom configuration is given in third argument
flowplayer("playerContainer", "path/tohttp://releases.flowplayer.org/swf/flowplayer-3.2.7.swf",{
onStop: function () {
// the following does not prevent the crash either
// if (this.isFullscreen()) {
// this.toggleFullscreen();
// }
this.unload();
},
clip: {
// does not work
onStart: function () {
this.toggleFullscreen();
}
},
plugins: {
controls: {stop: true}
}
});
</script>
Aside: Is there a working sample of
toggleFullscreen() somewhere? I also tried it from within
onCuepoint without success.