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)

Firefox 145
defect

Tracking

()

VERIFIED FIXED
148 Branch
Tracking Status
firefox-esr140 --- disabled
firefox145 --- disabled
firefox146 --- disabled
firefox147 --- disabled
firefox148 --- verified

People

(Reporter: acristea, Assigned: jbrown)

References

(Blocks 1 open bug)

Details

Attachments

(2 files)

Attached image Screenshot.png

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

  1. 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()||
  1. Run the file in Terminal using command:

python empty_response_server.py

  1. 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+

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)

Currently disabled, but looks like getting enabled for Fx148: Bug 2003587

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
Status: ASSIGNED → RESOLVED
Closed: 1 month ago
Resolution: --- → FIXED
Target Milestone: --- → 148 Branch
Regressions: 2008798
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.

Attachment

General

Creator:
Created:
Updated:
Size: