Firefox 75 for developers

This article provides information about the changes in Firefox 75 that will affect developers. Firefox 75 was released on April 7, 2020.

See also the accompanying hacks post — Firefox 75: Ambitions for April.

Changes for web developers

Developer tools

HTML

CSS

Accessibility

New ARIA roles and attributes are now exposed in Firefox, on Windows and Linux (bear in mind that these still won't be usable until screen readers start to support them):

Note: On macOS, we are first waiting for Apple to define what Safari will expose as Apple-dialect attributes to VoiceOver, and will then follow suit.

JavaScript

APIs

DOM

  • The HTMLFormElement interface has a new method, requestSubmit(). Unlike the old (and still available) submit() method, requestSubmit() acts as if a specified submit button has been clicked, rather than just sending the form data to the recipient. Thus the submit event is delivered and the form is checked for validity prior to the data being submitted (Firefox bug 1613360).
  • The submit event is now represented by an object of type SubmitEvent rather than a simple Event. SubmitEvent includes a new submitter property, which is the Element that was invoked to trigger the form submission. With this event, you can have a single handler for submit events that can discern which of multiple submit buttons or links was used to submit the form (Firefox bug 1588715).
  • Calling the click() method on a detached element (one not part of a DOM tree) now functions normally, leading to a click event being sent to it (Firefox bug 1610821).

Web animations API

Firefox 75 sees numerous additions to the Web Animations API:

Media, Web Audio, and WebRTC

HTTP

No changes.

Security

  • CSP nonces from non-script sources, such as CSS selectors, and .getAttribute("nonce") calls, are now hidden. Instead, check the .nonce property to access nonces from scripts (Firefox bug 1374612).

Plugins

No changes.

WebDriver conformance (Marionette)

  • Fixed a bug that always caused Marionette to initialize when Firefox starts-up. It has been limited to the command line argument and environment variable now (Firefox bug 1622012).
  • Fixed WebDriver:Print to no longer add extra margins to the document (Firefox bug 1616932).
  • Changed the preference value for network.http.speculative-parallel-limit to 0, to no longer force-disable speculative connections (Firefox bug 1617869).

Other

No changes.

Changes for add-on developers

API changes

Manifest changes

Older versions