-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check some override recipe things #1293
Comments
Don't forget
was ripping my hairs out because I had this set to true in my overrides. The behavior just changed with the last FF version, I guess? Originally posted by @Thorin-Oakenpants in #1291 (comment) |
confirmed. I only needed:
both can be set using the settings UI in FF btw.
confirmed, as long as to test this:
if the cookie was actually cleared the theme would be set to white because of RFP, instead it is still dark. |
this is a great comment - the intersection of SR and history and sanitizing (and where form data and history come regards privacy/sanitizing) has never been clear cut I can't for sure say what the old behavior was (ignoring PB mode) - but we had that there for a reason, so I guess behavior changed. SR files are created and maintained in case of a crash, and if you allow SR then it just doesn't wipe it on close. I guess I could test my FF set in a binary fashion until I find when it changed |
found this comment from 2018 that suggest the behavior has been the same one for a while -> #575 (comment)
I want to re-test this once that pref is deprecated. |
are we still looking for something in here? given this issue I propose changing /* override recipe: enable session restore ***/
user_pref("browser.startup.page", 3); // 0102
// user_pref("browser.privatebrowsing.autostart", false); // 0110 required if you had it set as true
// user_pref("browser.sessionstore.privacy_level", 0); // 1003 to restore formdata, optional
user_pref("privacy.clearOnShutdown.history", false); // 2811
// user_pref("privacy.cpd.history", false); // 2812 to match when you use Ctrl-Shift-Del, optional |
yes. i will get to it when i get to it - the longer i leave it, the higher the chance there is nothing to do |
updated the recipe, this is not something I will ever test or can be bothered about, but at least the recipe looks cleaner |
I re-tested this both in 102 and 103 (where the lifetime pref doesn't even exist anymore), and in both cases I simply had to set an exception for cookies to not be cleared. so |
so we're good then? nothing to do? |
yup, we're good. |
enable session restore recipe:
places.history.enabled=false
browser.sessionstore.privacy_level=2
(note that I don't usenetwork.cookie.lifetimePolicy=2
).browser.sessionstore.privacy_level=0
restores formdata even withprivacy.clearOnShutdown.formdata=true
.Originally posted by @rusty-snake in #1277 (comment)
The text was updated successfully, but these errors were encountered: