• Skip to main content
  • Select language
  • Skip to search
MDN Web Docs
  • Technologies
    • HTML
    • CSS
    • JavaScript
    • Graphics
    • HTTP
    • APIs / DOM
    • WebExtensions
    • MathML
  • References & Guides
    • Learn web development
    • Tutorials
    • References
    • Developer Guides
    • Accessibility
    • Game development
    • ...more docs
Firefox
  1. MDN
  2. Mozilla
  3. Firefox
  4. Firefox developer release notes
  5. Firefox 29 for developers

Firefox 29 for developers

In This Article
  1. Changes for Web developers
    1. Developer Tools
    2. CSS
    3. HTML
    4. JavaScript
    5. Interfaces/APIs/DOM
    6. MathML
    7. SVG
  2. Security
  3. Changes for add-on and Mozilla developers
  4. See also
    1. Older versions

Firefox 29 was released on April 29, 2014. 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

Major changes include:

  • Vastly improved web console - Arrays are shown inline without clicking to bring up in the right inspector, window objects show their url, etc.
  • Added the console API to Web Workers (bug 620935). Now you can log messages to the Web Console from Web Workers.
  • The Network Monitor tool now shows performance statistics using pie charts (bug 846599).
  • On the Inspector, preview tooltips of CSS transforms are now available (bug 726427).
  • DOM elements seen in the debugger and console can be removed or inspected directly, via the new buttons to the right of the variable listing.
  • A CSS source map is now supported by the Style Editor (bug 926014).
  • Autocompletion of CSS properties and values has been added to the Style Editor (bug 717369).

See the Mozilla Hacks blog post for details and other smaller changes.

CSS

  • CSS variables have been implemented (bug 773296). Mozilla Hacks article can be found here. They are enabled by default only for non-release builds (on release builds flip the pref layout.css.variables.enabled to true if you want to play with them).
  • Flexboxes now support visibility: collapse (bug 783470).
  • The box-sizing property has been unprefixed (bug 243412).
  • The will-change property, a hint to that something will animate has been added. The preference layout.css.will-change.enabled must be switched to true to enable it. (bug 940842)
  • Scientific exponential notation, like 3e1 or 10e+0, is now supported for <number> values and derivatives, like <percentage> and unit values, but not <integer>  (bug 964529).
  • Images of type <gradient> are now supported in border-image (bug 709587).
  • The touch-action property has been implemented. It is not activated by default; the layout.css.touch_action.enabled pref controls it. (bug 795567)
  • Remove redundant default style for <pre> element from quirk.css (bug 948914).
  • CSS Variables fallback incorrectly implemented (primary cycles)  (bug 950497).
  • @supports conditions with tokens after a declaration's priority should evaluate to false (bug 909170).

HTML

  • <input type=color> and <input type=number> are available by default.
  • Support for the non standard <pre cols> has been removed, as well as the layout effect of <pre wrap> . Both effects can, and should, be achieved using CSS. (bug 949879)

JavaScript

  • New ECMAScript 2015 String methods: String.prototype.codePointAt() and String.prototype.fromCodePoint() have been implemented (bug 918879).
  • The ECMAScript Internationalization API (ECMA-402) has been implemented and is now enabled by default in Firefox Desktop (bug 853301):
    • New objects in the new Intl object namespace:
      • Intl.Collator
      • Intl.DateTimeFormat
      • Intl.NumberFormat
    • The following methods of String, Number and Date have been updated to include the locales and options arguments per ECMA-402:
      • String.prototype.localeCompare()
      • Number.prototype.toLocaleString()
      • Date.prototype.toLocaleString()
      • Date.prototype.toLocaleDateString()
      • Date.prototype.toLocaleTimeString()
  • To match the updated ECMAScript 2015 draft specification, the Map and Set objects now treat -0 and +0 as the same when checking for key and value equality.
  • Promise has been enabled by default (bug 918806).
  • Completed generators now return an IteratorResult object instead of throwing (bug 958951).
  • A malformed JSON string parsed by JSON.parse() now yields a more detailed error message containing the line and column number that caused the parsing error. This is useful when debugging large JSON data.
  • The ArrayBuffer.isView() method has been added (bug 896105).

Interfaces/APIs/DOM

  • A new type of workers, SharedWorker, is now available by default (bug 924089).
  • The URLUtils interface now supports the searchParams property returning a URLSearchParams object, allowing to modify the search params of an URL (bug 887836). The URLSearchParams constructor allows easier parsing of query strings.
  • The NavigatorOnLine.onLine property is now supported on WorkerNavigator , allowing to know the online/offline status in workers (bug 925437).
  • As part of the implementation of Web Components, the HTMLShadowElement interface has been implemented behind the dom.webcomponents.enabled. Flip it to true if you want to use it. (bug 887538).
  • The read-only property HTMLIFrameElement.sandbox is no longer a string but an HTMLSettableToken (bug 845057).
  • On HTMLCanvasElement.getContext(), the value moz-webgl is no longer supported. Use the standard webgl value (bug 913597).
  • The constructor for ImageData has been added. This interface can be used in a Worker. (bug 959958)
  • The property location.origin is now available in workers (via WorkerLocation) (bug 964148).
  • The ValidityState.badInput property has been implemented (bug 827161).
  • The deprecated Window.pkcs11 property has been removed; it was returning null since Firefox 3.0.14. (bug 964964)
  • The Node.cloneNode() and Document.importNode() methods take the Boolean deep argument. Until now, if omitted, these methods acted as if the value of deep was true. But this behavior has been changed as per the latest spec, and if omitted, the methods will act as if the value was false. (bug 937461)
  • Window._content is no longer available to Web content (bug 946564).
  • URLUtils.port behavior has been slightly changed: set to '' will set it to the default port associated with the protocol, and 0 to 0. (bug 930450)
  • Document.referrer is now based on the incumbent script (bug 887928).
  • The Gamepad API is enabled by default (bug 878828).
  • The CanvasRenderingContext2D.drawSystemFocusRing() method got renamed to CanvasRenderingContext2D.drawFocusIfNeeded() (bug 959820).

MathML

No change.

SVG

No change.

Security

  • The CSP 1.1 experimental hash-source directive has been implemented. The preference security.csp.experimentalEnabled should be set to true to enable this functionality (bug 883975).

Changes for add-on and Mozilla developers

  • Australis and add-on compatibility - This is a major Firefox theme change that affects most extensions that involving the Firefox user interface.
  • nsISecurityCheckedComponent has been removed (bug 794943). Most consumers can simply remove nsISecurityCheckedComponent from their interface definition and they will continue to work.

Non-Australis changes TBD.

See also

  • Site Compatibility for Firefox 29

Older versions

  • Firefox 28 for developers
  • Firefox 27 for developers
  • Firefox 26 for developers
  • Firefox 25 for developers
  • Firefox 24 for developers
  • Firefox 23 for developers
  • Firefox 22 for developers
  • Firefox 21 for developers
  • Firefox 20 for developers
  • Firefox 19 for developers
  • Firefox 18 for developers
  • Firefox 17 for developers
  • Firefox 16 for developers
  • Firefox 15 for developers
  • Firefox 14 for developers
  • Firefox 13 for developers
  • Firefox 12 for developers
  • Firefox 11 for developers
  • Firefox 10 for developers
  • Firefox 9 for developers
  • Firefox 8 for developers
  • Firefox 7 for developers
  • Firefox 6 for developers
  • Firefox 5 for developers
  • Firefox 4 for developers
  • Firefox 3.6 for developers
  • Firefox 3.5 for developers
  • Firefox 3 for developers
  • Firefox 2 for developers
  • Firefox 1.5 for developers

Document Tags and Contributors

Tags: 
  • firefox developers
  • firefox29
 Contributors to this page: Sebastianz, kdex, mrstork, kohei.yoshino, fscholz, teoli, yisi, MKaply, mnoorenberghe, mattbrundage, Sheppy, sylvestre, jmclerck, claudepache, Luke314, mihaisucan, fbender, merih, Anwesh
 Last updated by: Sebastianz, Feb 7, 2017, 12:51:43 PM
  1. Add-ons
    1. Firefox developer release notes
    2. Add-ons
    3. Add-on guidelines
    4. Add-on Manager
    5. Extensions
    6. OpenSearch plug-ins
    7. Plugins
    8. Themes
  2. Firefox internals
    1. Firefox developer release notes
    2. Mozilla project
    3. Gecko
    4. JavaScript code modules
    5. JS-ctypes
    6. MathML project
    7. MFBT
    8. Mozilla projects
    9. Preference system
    10. WebIDL bindings
    11. XPCOM
    12. XUL
  3. Building and contributing
    1. Build instructions
    2. Configuring build options
    3. How the build system works
    4. Mozilla source code
    5. Localization
    6. Mercurial
    7. Quality assurance
    8. Using Mozilla code in other projects