Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:h… (ďalšie informácie)
Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:home`. It doesn't happen in `about:config` or `about:profiles`, for instance.
`privacy.resistFingerprinting` is set to `false`. The problem persists in Troubleshoot mode. The issue isn't present in Firefox ESR 102.12.0.
Running `date -R` with the system shell:
`Sat, 22 Jul 2023 12:10:42 -0300`
Javascript console at `about:config`:
```
> Date()
"Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time)"
> new Date()
Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time)
> (new Date()).getTimezoneOffset()
180
```
Javascript console at `about:home` or `https://example.com`:
```
> Date()
"Sat Jul 22 2023 15:10:42 GMT+0000 (GMT)"
> new Date()
Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time)
> (new Date()).getTimezoneoffset()
0
```