Bug 2251620
| Summary: | hang on maps.google.co.uk (maybe randomDataOnCanvasExtract/ RandomizePixels?) - downstream only? | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Dr. David Alan Gilbert <rh> |
| Component: | firefox | Assignee: | Gecko Maintainer <gecko-bugs-nobody> |
| Status: | CLOSED DUPLICATE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 39 | CC: | erack, gecko-bugs-nobody, jhorak, klaas, rstrode |
| Target Milestone: | --- | Keywords: | Regression |
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | --- | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2023-11-27 02:57:04 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Dr. David Alan Gilbert
2023-11-27 01:32:53 UTC
Given that backtrace I tried turning off: privacy.resistFingerprinting.randomDataOnCanvasExtract and it fixes it! To me this looks like that code is broken;
in nsRFPService.cpp:
// Ensure at least 20 random changes may occur.
uint8_t numNoises = std::clamp<uint8_t>(rnd3, 20, 255);
for (uint8_t i = 0; i <= numNoises; i++) {
I don't think we're ever getting out of that loop, and I think that's because numNoises is 255 - which the clamp allows.
*** This bug has been marked as a duplicate of bug 2251202 *** |