Back to Content

Firefox 24 release notes for developers

files/en-us/mozilla/firefox/releases/24/index.md

latest4.5 KB
Original Source

Firefox 24 was released on September 17, 2013. This article lists key changes that are useful not only for web developers, but also Firefox and Gecko developers as well as add-on developers.

Changes for web developers

Developer Tools

  • The Network inspector now lets you filter by content type (CSS/image/font etc.) and see the relevant size and load times.
  • The DevTools options panel to the left lets you disable/enable JavaScript temporarily.
  • Extension developers may use the new Browser Console for Chrome-level scripts (Replaces Error Console).
  • The source map syntax has been changed to use //# instead of //@ (Firefox bug 870361).

CSS

  • The two values -moz-zoom-in and -moz-zoom-out of the {{cssxref("cursor")}} property have been unprefixed to zoom-in and zoom-out (Firefox bug 772153).
  • To match the specification, the keywords not, only, and, and or cannot be used as media types anymore (Firefox bug 757554).

HTML

  • The {{HTMLElement("track")}} element has been implemented behind the media.webvtt.enabled preference, and is disabled by default. (Firefox bug 833385).

JavaScript

DOM

  • Support for the {{domxref("Range.Range", "Range()")}} constructor has been added (Firefox bug 868999).
  • Support for the {{domxref("Text.Text", "Text()")}} constructor has been added (Firefox bug 869000).
  • Support for the {{domxref("Comment.Comment", "Comment()")}} constructor has been added (Firefox bug 869006).
  • Support for the {{domxref("DocumentFragment.DocumentFragment", "DocumentFragment()")}} constructor has been added (Firefox bug 869002).
  • The {{domxref("FocusEvent")}} interface has been implemented (Firefox bug 855741).
  • Support for the {{domxref("Element.remove", "ChildNode.remove()")}} method has been added (Firefox bug 856629).
  • The WebVTT interfaces related to the {{HTMLElement("track")}} element, {{domxref("HTMLTrackElement")}}, {{domxref("TextTrack")}}, {{domxref("TextTrackCue")}}, {{domxref("TextTrackList")}}, and {{domxref("TextTrackCueList")}} have been implemented behind the media.webvtt.enabled property, defaulting to false (Firefox bug 833385).
  • The {{domxref("Gamepad")}} interface, and {{domxref("Navigator.getGamepads")}} have been implemented behind the dom.gamepad.enabled property, defaulting to false (Firefox bug 690935).
  • On desktop Firefox only, HTMLCanvasElement.getContext() can now take the webgl value, in addition to experimental-webgl (Firefox bug 870232).
  • The non-standard method mozLoadFrom() of {{domxref("HTMLMediaElement")}} has been removed (Firefox bug 877135).

MathML

  • The dir attribute for controlling directionality of formulas on e.g., {{MathMLElement("math")}} or {{MathMLElement("mrow")}} elements is now equivalent to using the {{cssxref("direction")}} CSS property.
  • The equal sign ("=") is now stretchable.
  • The "updiagonalarrow" value for the notation attribute on {{MathMLElement("menclose")}} elements has been added.

Changes for add-on and Mozilla developers

  • Doc Shells have now the allowMedia attribute to disable media playing (Firefox bug 759964).
  • Sherlock search plugins in the application directory or profile won't be loaded anymore (Firefox bug 862143).

See also