files/en-us/mozilla/firefox/releases/85/index.md
This article provides information about the changes in Firefox 85 that will affect developers. Firefox 85 was released on January 26, 2021.
[!NOTE] See also January brings us Firefox 85 on Mozilla Hacks.
<link rel="preload"> is now enabled. (Firefox bug 1626997).<menuitem> HTML element is no longer available — it has been hidden behind the dom.menuitem.enabled flag. (Firefox bug 1680596).pinch-zoom value for the {{cssxref("touch-action")}} property is now enabled. (Firefox bug 1329241).The collation property can now be specified in the options passed to the Intl.Collator() constructor (Firefox bug 1670062). This allows developers to write code with greater clarity:
// Old method
let pinyin = new Intl.Collator(["zh-u-co-pinyin"]);
// New method
let pinyin = new Intl.Collator("zh", { collation: "pinyin" });
No changes.
WebDriver:ElementClick
is called for a link with a target other than _blank (Firefox bug 1678455).no such element error instead of a stale element reference error (Firefox bug 1684827).WebDriver:SwitchToFrame can fail with a "no such window" error if the frame's content hasn't yet finished loading (Firefox bug 1691348).marionette.actors.enabled preference to false (Firefox bug 1690308).No changes.