Prior to .16 activating the placeholder for the invisible (1px) flash player would start the playback, now it causes a reload of the page but the player remains inactive (placeholder remains). You have to allow all flash in the blocked objects menu.
.16 has a fix for this bug that forces a page reload for objects less than 2 pixels:
Better object unblocking behavior, triggering a page reload if allowed object has no layout (i.e. was meant to be scripted only)
Code: Select all
if (jsEnabled && (obj.offsetWidth < 2 || obj.offsetHeight < 2)) {
this.quickReload(doc.defaultView);
return;
}