Closed
Bug 2002554
Opened 2 months ago
Closed 1 month ago
Visuals not matching Figma design for NS_ERROR_NET_EMPTY_RESPONSE
Categories
(Firefox :: Security, defect)
Tracking
()
VERIFIED
FIXED
148 Branch
People
(Reporter: acristea, Assigned: jbrown)
References
(Blocks 1 open bug)
Details
Attachments
(2 files)
Found in
- Beta 146.0b8
Affected platforms
- MacOS 15.6.1, Windows 10, Ubuntu 24.04, Windows 11, MacOS 13 ARM
Preconditions
- security.certerrors.felt-privacy-v1 set to "true"
Steps to reproduce
- In a Text file, insert the Python script and save it as empty_response_server.py:
import socketserver
class EmptyResponseHandler(socketserver.BaseRequestHandler):
def handle(self):
# Accept connection and then close without sending any data
print(f"Connection from {self.client_address}, closing immediately without response.")
self.request.close()
if name == "main": # correct check
HOST, PORT = "localhost", 8000
with socketserver.TCPServer((HOST, PORT), EmptyResponseHandler) as server:
print(f"Serving on {HOST}:{PORT}")
server.serve_forever()||
- Run the file in Terminal using command:
python empty_response_server.py
- Open Firefox and go to http://localhost:8000
Expected result
- Since security.certerrors.felt-privacy-v1 is set to "true" the new version of the network error page should appear.
Actual result
- Even though security.certerrors.felt-privacy-v1 is set to "true", an older version of the network error page is presented.
Regression range
- Not a regression.
Flags: behind-pref+
Comment 1•2 months ago
|
||
The severity field is not set for this bug.
:manuel, could you have a look please?
For more information, please visit BugBot documentation.
Flags: needinfo?(manuel)
Comment 2•2 months ago
|
||
Currently disabled, but looks like getting enabled for Fx148: Bug 2003587
| Assignee | ||
Comment 3•1 month ago
|
||
Updated•1 month ago
|
Assignee: nobody → jbrown
Status: NEW → ASSIGNED
Pushed by nbaumgardner@mozilla.com:
https://github.com/mozilla-firefox/firefox/commit/9604eb03510b
https://hg.mozilla.org/integration/autoland/rev/460a63fb8945
Visuals not matching Figma design for NS_ERROR_NET_EMPTY_RESPONSE - r=fluent-reviewers,desktop-theme-reviewers,bolsson,Gijs,emilio
Comment 5•1 month ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 1 month ago
Resolution: --- → FIXED
Target Milestone: --- → 148 Branch
Updated•1 month ago
|
QA Whiteboard: [S3][QA-4355][qa-found-in-b146] → [S3][QA-4355][qa-found-in-b146] [qa-triage-done-c149/b148] [qa-ver-needed-c149/b148]
Flags: qe-verify+
Verified fixed on Nightly 149.0a1 (20260121163431).
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•