using any Firefox Nightly version (only tested till v35 so I'm assuming here, with E10s disabled), I'm unable to allow an a video element by left-clicking on it, the page refreshes but the object stays blocked just the same way. Coincidentally, right-clicking on the NSS toolbar icon -> Blocked Objects -> Temporarily allow <name>.webm works just fine. And if this wasn't weird enough, any normal/release/public/deploy version of the Firefox does not carry this issue, and left clicking on the element allows it just fine, for instance FF 40 Nightly presents the issue and FF 40 Release does not (again E10s disabled on everything).
I'm not sure whats going on here, I've tried clean installs of both branches and different version with default settings on both and only NSS as an extension with even the same settings shared between NSS installs, currently I'm using this on the regular release of FF 42:
Code: Select all
user_pref("noscript.ABE.migration", 1);
user_pref("noscript.ABE.notify", false);
user_pref("noscript.ABE.wanIpAsLocal", false);
user_pref("noscript.autoReload", false);
user_pref("noscript.clearClick.prompt", false);
user_pref("noscript.confirmUnblock", false);
user_pref("noscript.firstRunRedirection", false);
user_pref("noscript.forbidFrames", true);
user_pref("noscript.forbidIFrames", true);
user_pref("noscript.forbidMetaRefresh", true);
user_pref("noscript.forbidMetaRefresh.notify", false);
user_pref("noscript.gtemp", "");
user_pref("noscript.hoverUI", false);
user_pref("noscript.notify", false);
user_pref("noscript.notify.bottom", false);
user_pref("noscript.options.tabSelectedIndexes", "5,5,0");
user_pref("noscript.showAbout", false);
user_pref("noscript.showAllowPage", false);
user_pref("noscript.showDistrust", false);
user_pref("noscript.showGlobal", false);
user_pref("noscript.showRecentlyBlocked", false);
user_pref("noscript.showTempToPerm", false);
user_pref("noscript.showUntrusted", false);
user_pref("noscript.showVolatilePrivatePermissionsToggle", false);
user_pref("noscript.subscription.lastCheck", -80960170);
user_pref("noscript.temp", "");
user_pref("noscript.version", "2.9");
user_pref("noscript.visibleUIChecked", true);
user_pref("noscript.xss.notify", false);
As an example follow this example video url, with the above settings, left-clicking on it allows and plays the video on regular FF, on FF Nightly it refreshes the page and stays the same (using the blocked objects sub-menu to allow it works).
Not sure what else to say other than I am unsure of what is going on.
Hope this is an easy fix, thanks.