Firefox 4 for developers
Firefox 4, which shipped on March 22, 2011, enhances performance, adds more support for HTML5 and other evolving Web technologies, and further improves security. This article provides information about this release and what features are available for Web developers, add-on developers, and Gecko platform developers alike.
Features for web developers
HTML
- Meet the HTML5 parser
-
A look at what the HTML5 parser means to you, and how to embed SVG and MathML into your content inline.
- Forms in HTML5
-
A look at improvements to web forms. Among these changes are added input types in the
<input>
element, data validation, and more. - HTML5 Sections
-
Gecko now supports the new HTML5 elements related to sections in a document:
<article>
,<section>
,<nav>
,<aside>
,<hgroup>
,<header>
and<footer>
. -
This attribute, common to all elements, is used to hide content in a webpage that is not currently relevant to the user.
- Other HTML5 elements
-
Gecko now also supports the following new HTML5 elements:
<mark>
,<figure>
, and<figcaption>
. - WebSockets
-
A guide to using the new WebSockets API for real-time communication between a web application and a server. Note that WebSockets as implemented in Firefox 4 is not compatible with the final standard, and should not generally be used.
Canvas improvements
The following changes were made to the CanvasRenderingContext2D
interface to bring our <canvas>
implementation closer to being in line with the specification:
- Specifying a negative radius when calling
arc()
now correctly throws anINDEX_SIZE_ERR
exception. - Specifying non-finite values when calling
createLinearGradient()
andcreateRadialGradient()
now throwsNOT_SUPPORTED_ERR
instead ofSYNTAX_ERR
. - Setting
miterLimit
to a negative value no longer throws an exception; instead, it properly ignores non-positive values. - Setting
lineWidth
to a negative value no longer throws an exception; instead, it properly ignores non-positive values. - The
putImageData()
method now supports the optional parametersdirtyX
,dirtyY
,dirtyWidth
, anddirtyHeight
.
Miscellaneous HTML changes
<textarea>
elements are now resizable by default; you can use theresize
CSS property to disable this.canvas.getContext
andcanvas.toDataURL
no longer throw an exception when called with unrecognized arguments.- The
<canvas>
element now supports the Mozilla-specificmozGetAsFile()
method, which lets you obtain a memory-based file containing an image of the canvas's contents. SeeHTMLCanvasElement
for details. Canvas2DContext.lineCap
andCanvas2DContext.lineJoin
no longer throw an exception when set to an unrecognized value.Canvas2DContext.globalCompositeOperation
no longer throws an exception when set to an unrecognized value, and no longer supports the non-standarddarker
value.- Support for the obsolete
<spacer>
element, which was absent in all other browsers, has been removed. - The
<isindex>
element, when created by callingDocument.createElement()
, is now created as a simple element with no properties or methods. - Gecko now supports calling
click()
on<input>
elements to open the file picker. See the example in the article Using files from web applications. - The
<input>
element supports a newmozactionhint
attribute, which lets you specify the label for the enter key on virtual keyboards. <script>
elements inside<iframe>
,<noembed>
, and<noframes>
elements now get executed, which they weren't in previous versions of Firefox. This is in compliance with the specification, and matches the behavior of other browsers.
CSS
- CSS transitions
-
New CSS transitions support is available in Firefox 4.
- Computed values in CSS
-
Support for
-moz-calc
has been added. This lets you specify<length>
values as mathematical expressions. - Selector grouping
-
Support for
:-moz-any
to group selectors and factorize combinators. - Background image subrectangle support
-
The
-moz-image-rect()
function makes it possible to use subrectangles of images as abackground-image
. - CSS touch properties
-
Support for touch properties is added. Details, and real article names, to come later.
- Using arbitrary elements as CSS backgrounds
-
You can use the
-moz-element
CSS function and thedocument.mozSetImageElement()
DOM function to use arbitrary HTML elements as backgrounds. - Privacy and the :visited selector
-
Changes have been made to what information can be obtained about the style of visited links using CSS selectors. This may affect some web applications.
New CSS properties
Property | Description |
-moz-font-feature-settings |
Lets you customized advanced features of OpenType fonts. |
-moz-tab-size |
Specifies the width in space characters of a tab character (U+0009) when rendering text. |
resize |
Lets you control the dimensions in which an element may be resized. |
New CSS pseudo-classes
Pseudo-class | Description |
:-moz-handler-crashed |
Used to style elements whose plugins have crashed. |
:-moz-placeholder |
Applied to placeholder text in form fields. |
:-moz-submit-invalid |
Applied to the submit button on forms when one or more of the form's fields doesn't validate. |
:-moz-window-inactive |
Applied to elements in inactive windows. |
:invalid |
Automatically applied to <input> fields when
their contents are invalid.
|
:optional |
Automatically applied to <input> fields that
don't specify the required attribute.
|
:required |
Automatically applied to <input> fields that
specify the required attribute.
|
:valid |
Automatically applied to <input> fields when
their contents validate successfully.
|
New CSS pseudo-selectors
Pseudo-selector | Description |
:-moz-focusring |
Lets you specify the appearance of an element when Gecko believes it should have a focus indication rendered. |
New CSS functions
Function | Description |
:-moz-any |
Lets you group selectors and factorize combinators. |
-moz-calc |
Lets you specify
<length> values as
mathematical expressions.
|
-moz-element |
Lets you use an arbitrary element as a background for
background-image and
background .
|
-moz-image-rect |
Lets you use a subrectangle of an image as a
background-image or
background .
|
Renamed CSS properties
Old Name | New Name | Notes |
---|---|---|
-moz-background-size |
background-size |
The name -moz-background-size is no longer supported. |
-moz-border-radius |
border-radius |
The old name is supported for a limited time to allow you time to update your sites. Rendering changes have also been made to match the latest version of the specification. |
-moz-box-shadow |
box-shadow |
Miscellaneous CSS changes
- The
text-shadow
property now caps the blur radius to 300px for sanity and performance reasons. - The
overflow
property no longer applies to table-group elements (<thead>
,<tbody>
, and<tfoot>
). - The
-moz-appearance
property now supports the-moz-win-borderless-glass
value, which applies a borderless Aero Glass look to an element. - The
-moz-device-pixel-ratio
media feature has been added, allowing the use of the device pixels per CSS pixel ratio to be used in Media Queries. - Gecko's handling of CSS
<length>
units has been revised to better match other browsers, and to more accurately translate absolute lengths into screen pixel counts based on the device's DPI.
Graphics and video
- WebGL
-
The developing WebGL standard is now supported by Firefox.
- Optimizing graphics performance
-
Tips and tricks for getting the most out of graphics and video performance in Firefox 4.
- Support for WebM video
-
The new open WebM video format is supported by Gecko 2.0.
- SVG animation with SMIL
-
Support for SMIL animation of SVG is now available.
- Using SVG as images and as CSS backgrounds
-
You can now use SVG with the
<img>
element, as well as a CSSbackground-image
. - Media
buffered
attribute support -
The
buffered
attribute on<video>
and<audio>
elements is now supported, letting you determine which ranges of a media file have been buffered. TheTimeRanges
DOM interface has been implemented to support this. - Media
preload
attribute -
The
preload
attribute from the HTML5 specification has been implemented, replacing the previously-implemented (and no longer supported)autobuffer
attribute. This affects the<video>
and<audio>
elements, as well as thensIDOMHTMLMediaElement
interface. - SVG text positioning improvements
-
You can now specify lists for the values of the
x
,y
,dx
, anddy
properties on SVG<text>
and<tspan>
elements. This lets you control the positioning of each character in a string individually.
DOM
- JavaScript typed arrays
-
Support has been added for JavaScript typed arrays; this allows you to manipulate buffers containing raw data using native data types. Several APIs make use of this, including the File API, WebGL, and WebSockets.
- Obtaining boundary rectangles for ranges
-
The
Range
object now hasrange.getClientRects()
andrange.getBoundingClientRect()
methods. - Capturing mouse events on arbitrary elements
-
Support for the Internet Explorer-originated
setCapture()
andreleaseCapture()
APIs has been added. See Firefox bug 503943. - Manipulating the browser history
-
The existing document history object, available through the
window.history
object, now supports the new HTML5pushState()
andreplaceState()
methods. - Animations using MozBeforePaint
-
A new event has been added which, in concert with the
window.mozRequestAnimationFrame()
method andwindow.mozAnimationStartTime
property, provides a way to create animations that are synchronized with one another. - Touch and multi-touch events
-
Support has been added for touch and multi-touch events.
HTML elements' DOM interfaces have changed
Several HTML elements have had their DOM interfaces changed to the ones required by the HTML5 specification, as shown below.
Interface in Firefox 3.6 | Interface in Firefox 4 | HTML Element |
---|---|---|
HTMLSpanElement |
HTMLElement |
<abbr> , <acronym> , <address> , <b> , <bdo> , <big> , <blink> , <center> , <cite> , <code> , <dd> , <dfn> , <dt> , <em> , <i> , <kbd> , <listing> , <nobr> , <plaintext> , <s> , <samp> , <small> , <strike> , <strong> , <sub> , <sup> , <tt> , <u> , <var> , <xmp> |
HTMLDivElement |
HTMLElement |
<noembed> , <noframes> , <noscript> |
HTMLWBRElement |
HTMLElement |
<wbr> |
Miscellaneous DOM changes
- The wrapping of a
<textarea>
element can now be controlled via the DOM, via thewrap
DOM attribute. Firefox bug 41464 <script>
elements created usingDocument.createElement()
and inserted into a document now behave according to the HTML5 specification by default. Scripts with thesrc
attribute execute as soon as available (without maintaining ordering) and scripts without thesrc
attribute execute synchronously. To make script-inserted scripts that have thesrc
attribute execute in the insertion order, set.async=false
on them.- DOM
File
objects now offer aurl
property. - FormData support for XMLHttpRequest.
- The
Element.isContentEditable
property has been implemented. - The
Document.currentScript
property lets you determine which<script>
element's script is currently executing. The newelement.onbeforescriptexecute
andelement.onafterscriptexecute
events are fired before and after a script element executes. - Added the
mozSourceNode
property to theDragTransfer
object. - Added the
Selection.modify()
method to theSelection
object; this lets you easily alter the current text selection or cursor position in a browser window. - Support for the
window.directories
object and thedirectories
feature forwindow.open
, which are not supported in any other browser, has been removed. Usepersonalbar
instead. Firefox bug 474058 - The
Event.mozInputSource
property has been added to DOM user interface events; this non-standard property lets you determine the type of device that generated an event. - The
Document
readystatechange
event has been implemented. - The
Document.createElement()
method no longer accepts<
and>
around the tag name in quirks mode. - The
Element.setCapture()
andDocument.releaseCapture()
methods have been added, allowing elements to continue tracking mouse events even while the mouse is outside their normal tracking area after amousedown
event has occurred. - The
window.mozPaintCount
property has been added; it lets you determine how many times a document has been painted. This can be useful when testing performance of your web application. - The language token has been removed from
Navigator.appVersion
andNavigator.userAgent
. UseNavigator.language
or theAccept-Language
header instead. Firefox bug 572656 - The
XMLHttpRequest
object now exposes the response as a JavaScript typed array as well as a string, using the Gecko-specificmozResponseArrayBuffer
property. - Mouse events now include a
mozPressure
property indicating the amount of pressure on supported pressure-sensitive input devices. - The
URL.createObjectURL()
andURL.revokeObjectURL()
methods let you create object URLs which reference local files. - The
DOMImplementation.createHTMLDocument()
method lets you create a new HTML document. Node.mozMatchesSelector()
now throws aSYNTAX_ERR
exception if the specified selector string is invalid, instead of incorrectly returningfalse
.- You can now set an element's SVG properties' values using the same shorthand syntax as with CSS. For example:
element.style.fill = 'lime'
. Seeelement.style
for details. - The document root now has a
privatebrowsingmode
attribute that describes the state of private browsing mode, including an indication of whether private browsing is temporary or permanent for the session. - The second parameter of the
window.getComputedStyle()
method is now optional, as it is in every other major browser. - The DOM
StorageEvent
object now matches the latest version of the specification. - The minimum allowed delay for the
setTimeout()
andsetTimeout()
method is now a preference,dom.min_timeout_value
. - The
MozAfterPaint
event is no longer sent by default, due to a potential security issue. It can be re-enabled by setting a preference.
Security
- Content Security Policy (CSP)
-
Content Security Policy (CSP) is a Mozilla proposal designed to help web designers and server administrators specify how content on their websites interacts. The goal is to help detect and mitigate attacks including cross-site scripting and data injection attacks.
- HTTP Strict Transport Security
-
HTTP Strict Transport Security is a security feature that lets a website tell browsers that it should only be communicated with using HTTPS, instead of using HTTP.
- The X-FRAME-OPTIONS response header
-
The X-FRAME-OPTIONS HTTP response header introduced in Internet Explorer 8 is now supported by Firefox. This allows sites to indicate whether or not their pages can be used in frames, and if so, whether or not to restrict that to the same origin.
- User Agent string changes
-
As a means to reduce the amount of data and entropy sent out in HTTP requests (see Firefox bug 572650), the crypto strength and language tokens have been removed from the user agent string.
JavaScript
For an overview of the changes implemented in JavaScript 1.8.5, see New in JavaScript 1.8.5. JavaScript in Firefox 4 will have additional adherence to the ECMAScript 5 standard.
Developer tools
- Using the Web Console
-
The Web Console tool is a useful debugging aid for web developers and extension developers alike.
Note: The Error Console is disabled by default starting in Gecko 2.0. You can re-enable it by changing the devtools.errorconsole.enabled
preference to true
and restarting the browser.
Changes for Mozilla and add-on developers
For helpful tips on updating existing extensions for Firefox 4, see Updating extensions for Firefox 4. There are several key changes that break compatibility with existing add-ons, so be sure to read that article.
If you're a theme developer, you should read Theme changes in Firefox 4 to understand some critical changes you'll need to be aware of.
JavaScript code modules
- Services.jsm
-
The
Services.jsm
code module provides getters that make it easy to obtain references to commonly-used services, such as the preferences service or the window mediator, among others. - JS-ctypes API
-
The JS-ctypes API makes it possible to call C-compatible foreign library functions without using XPCOM.
- Add-ons Manager
-
The new Add-ons Manager provides information about installed add-ons, support for managing them, and provides ways to install and remove add-ons.
- PopupNotifications.jsm
-
The new popup notifications module makes it easy to present attractive, non-modal notifications to the user. You can see how to use this API in Using popup notifications.
- Loading code modules from chrome: URLs
-
You can now load JavaScript code modules using chrome: URLs, even inside JAR files.
- DownloadLastDir.jsm
-
The
DownloadLastDir.jsm
code module provides thegDownloadLastDir
global variable, which contains a string you can use to learn the path of the directory into which the last download occurred. This module handles issues related to private browsing for you. - Measuring performance using the PerfMeasurement.jsm code module
-
The
PerfMeasurement.jsm
code module provides an API to measure CPU-level performance data in JavaScript code.
Miscellaneous changes to code modules
- The
NetUtil.jsm
code module now offers thereadInputStreamToString()
method, which lets you read arbitrary bytes from a stream into a string, even if the stream includes zeroes. - The XPCOMUtils.jsm code module now offers IterSimpleEnumerator() and IterStringEnumerator() helpers to iterate over XPCOM enumerators.
- You can now use workers in JavaScript code modules.
DOM changes
ChromeWorker
-
A new type of worker for privileged code; this lets you use things like js-ctypes from workers in extensions and application code.
- Touch events
-
Support for (non-standard) touch events has been added; these let you track multiple fingers moving on a touch screen at the same time.
Other DOM changes
- The new "document-element-inserted" notification is sent when a document's root element is created, but before any scripts are executed on it.
XUL
Changes to the tabbrowser element
Several changes were made to the <xul:tabbrowser>
element that impact extensions that interact with tabs. In addition to supporting app tabs, these changes also change the tab bar into a standard toolbar, which lets the user drag toolbar buttons into it.
- The
TabClose
,TabSelect
, andTabOpen
events no longer bubble up to the<xul:tabbrowser>
element (gBrowser
). Event listeners for those events should be added togBrowser.tabContainer
rather than togBrowser
directly. - The tab context menu is no longer an anonymous child of the
<xul:tabbrowser>
. It can therefore be overlaid directly with XUL overlays. It can also be accessed more directly in JavaScript viagBrowser.tabContextMenu
. See this blog post for more details. - The new
visibleTabs
property was added to let you get an array of the currently visible tabs; this lets you determine which tabs are visible in the current tab set. This is used by Firefox Panorama, for example. - Added the new
showOnlyTheseTabs
method; this is used by Firefox Panorama. - Added the new
getIcon
method, which lets you get a tab's favicon without having to pull up the<xul:browser>
element. - Added the new
tabbrowser.tabs
property, which lets you easily get a list of the tabs in a<xul:tabbrowser>
element. - The new
pinTab
andunpinTab
methods let you pin and unpin tabs (that is, switch them between being app tabs and regular tabs). - Added the
getTabModalPromptBox
method andtabModalPromptShowing
attribute to the<xul:tabbrowser>
to support tab-modal alerts.
Changes to popups
- The
<xul:popup>
element is no longer supported; you should use<xul:menupopup>
instead. (If you continue usingpopup
, you will encounter glitches, since the element has no special meaning anymore. For example,<xul:menuseparator>
can appear transparent when used in a<xul:popup>
.) - The
<xul:menupopup>
XUL element now has atriggerNode
property, which indicates the node on which the event occurred that caused the popup to open. This also required the addition of a trigger event parameter to theopenPopup
method. Also, theanchorNode
property has been added; it returns the anchor specified when the popup was created. - The
<xul:panel>
element now offersfade
andflip
attributes, which are used to configure the behavior of new "arrow" style notification panels.
Remote XUL support removed
Remote XUL is no longer supported; this affects XUL documents being served through HTTP; also, you can no longer load XUL documents using file://
URLs unless you create the preference dom.allow_XUL_XBL_for_file
and set it to true
. There is, however, a whitelist feature that can be used to allow specific domains to load remote XUL.
Miscellaneous XUL changes
- The
readonly
attribute now correctly works for XBL fields. - The
<xul:resizer>
element now lets you use theelement
attribute to specify an element to resize, instead of resizing the window. - The
<xul:resizer>
element now has atype
attribute that lets you specify that the resizer is for a window instead of an element, to prevent the window resizer from being drawn twice. - The
"active"
attribute no longer gets set on active XUL windows. Instead, you can use the new:-moz-window-inactive
pseudoclass in order to assign different styles to background windows. - The
emptytext
attribute is now deprecated; you should useplaceholder
instead. - The
<xul:window>
element now offers anaccelerated
attribute; when true, the hardware layer manager is permitted to accelerate the window. - The
<xul:stack>
element now supports thebottom
andright
attributes. - Events are now fired during
<xul:toolbox>
customization, allowing you to detect changes to toolbars. - The
alternatingbackground
attribute for<xul:tree>
elements is no longer supported; you can use the:-moz-tree-row
pseudo-class instead. - The Bookmarks Toolbar overflow button with anonid chevronPopup is no longer anonymous; it has an ID of "PlacesChevron".
- The
<xul:tabs>
element now has atabbox
property, replacing the old_tabbox
property, which has been deprecated (and was never documented). - XUL
<xul:window>
elements now have thedrawintitlebar
attribute; if this istrue
, the window's content area includes the title bar, allowing drawing into the title bar. - New
TabPinned
andTabUnpinned
events are available, allowing you to detect when tabs are pinned and unpinned. - The new
TabAttrModified
event is sent when a tab'slabel
,crop
,busy
,image
, orselected
attributes change. <xul:tab>
elements now have apinned
attribute, letting you determine whether or not a tab is currently pinned.- The
setDirectionIndicator
class on<xul:tree>
elements hasn't done anything for some time now; now it's not used at all anymore. - The
<xul:window>
element now has achromemargin
attribute that lets you set the margin between chrome and content on each side of a window; you can use this to draw into the title bar, for example. - The
<xul:window>
element now has adisablechrome
attribute; this is used to hide most of the chrome in a window when it's being used to display in-browser UI, such asabout:addons
. - The
<xul:window>
element now has adisablefastfind
attribute, which lets you disable the find bar in a window when the content doesn't support it. This is used, for example, by the add-ons panel. - Toolbars can now be external to toolboxes, while still being considered a member of the
<xul:toolbox>
, by setting thetoolboxid
property of the<xul:toolbar>
. Also, the<xul:toolbox>
element now has aexternalToolbars
property, which lists all the toolbars that are considered members of the toolbox. - Support has been added for logging XUL templates for debugging purposes.
UI changes affecting developers
- The add-on bar
-
The status bar has been removed in favor of the new add-on bar. You'll need to update your extension to use this if you've been adding UI to the status bar in the past.
- Hiding browser chrome
-
You can now hide the browser's chrome when it's desirable to do so; for example,
about:addons
does this.
Storage
Miscellaneous storage API changes
- The
mozIStorageBindingParamsArray
interface now has a length attribute that indicates the number ofmozIStorageBindingParams
objects in the array. - The
mozIStorageStatement.bindParameters()
method now returns an error if the specifiedmozIStorageBindingParamsArray
is empty. - Added the
mozIStorageConnection.clone()
method, which lets you clone an existing database connection. - Added the
mozIStorageConnection.asyncClose()
method, which lets you close a database connection asynchronously; you specify a callback to be notified when the close operation is complete. - Added the
mozIStorageConnection.setGrowthIncrement()
method, which lets you specify the amount by which a database file is grown at a time, in order to help SQLite reduce fragmentation. - The
SQLITE_CONSTRAINT
error is now reported asNS_ERROR_STORAGE_CONSTRAINT
instead of asNS_ERROR_FAILURE
.
XPCOM
In addition to the specific changes referenced below, it's important to note that there are no longer any frozen interfaces. All interfaces are now unfrozen, regardless of what the documentation may say. We'll update the documentation over time.
- XPCOM changes in Gecko 2.0
-
Details about changes to XPCOM that impact compatibility in Firefox 4.
- Components.utils.getGlobalForObject()
-
This new method returns the global object with which an object is associated; this replaces a common use case of the now-removed
__parent__
.
Places
- Places query results may now be observed by multiple observers, and queries may be executed asynchronously. This means there have been some changes to the
nsINavHistoryResult
,nsINavHistoryQueryOptions
, andnsINavHistoryContainerResultNode
interfaces. More significantly, thensINavHistoryResultViewer
interface has been renamed tonsINavHistoryResultObserver
. - Some new notifications have been added to enable the browser to track the shutdown process of the Places service more reliably. Of these, most are for internal use only, but the
places-connection-closed
notification is available to know when the Places service has completed its shutdown process. - The array size output parameter on several Places methods is now optional.
- Support for
<menupopup type="places">
has been removed. Instead, you need to create and populate a menu with Places information manually, instead of having it done for you. See Displaying Places information using views: Menu view for details.
Interface changes
- The
nsIDocShell
andnsIWebBrowser
interfaces now have a newisActive
attribute, which is used to allow optimization of code paths for documents that aren't currently visible. - The
nsIMemory
methodnsIMemory.isLowMemory()
has been deprecated. You should use "memory-pressure" notifications to watch for low memory situations instead. - The API for handling redirects on HTTP channels has changed to let them be processed asynchronously. Any code that implements redirect handling using
nsIChannelEventSink.onChannelRedirect()
needs to be updated to usensIChannelEventSink.asyncOnChannelRedirect()
instead. This accepts a callback handler that must be called when a redirect is successfully completed. - The
nsINavHistoryResultObserver.batching()
method has been added, providing a way to group Places operations into batches, reducing the number of update notifications delivered, which can improve performance when observers are performing relatively involved tasks (such as refreshing views). - The long-obsolete
nsIPref
interface has finally been removed. If you haven't already switched tonsIPrefService
, now is the time. - The
nsISessionStore
andnsISessionStartup
interfaces received changes to support on-demand session restore. See thensISessionStore.restoreLastSession()
method. - The
nsIPrincipal
methodsnsIPrincipal.subsumes()
andnsIPrincipal.checkMayLoad()
, as well as itsorigin
,csp
, andURI
attributes, are now available from script; previously they were only available from native code. - The
nsIPrompt
interface now supports tab-modal alerts; see Using tab-modal prompts for details. - The
nsIEffectiveTLDService.getPublicSuffixFromHost()
method now correctly rejects host name starting with a period ("."). - The
mozIJSSubScriptLoader.loadSubScript()
method now has an optional argument allowing you to specify the character set of the script; if one is not provided, ASCII is assumed (as was always assumed previously). - The
nsIAccessProxy
interface has been removed. It was an implementation detail that has outlived its usefulness. - The
nsIContentView
andnsIContentViewManager
interfaces have been added for Firefox Mobile. It represents a scrollable content view whose contents are actually drawn by a separate process. - The
nsIDiskCacheStreamInternal
interface has been added. - The
nsIExternalURLHandlerService
interface has been added. - The
nsISyncJPAKE
interface has been added. See Firefox bug 601645. - The
nsIINIParserWriter
interface was added in Gecko 1.9.2.4 to support writing to INI files.
Memory management
- Infallible memory allocation
-
Mozilla now provides infallible memory allocators that are guaranteed not to return null. You should read this article to learn how they work and how to explicitly request fallible versus infallible memory allocation.
Other changes
- Most of the resources contained within Firefox have been combined into a single JAR archive,
omni.jar
, which improves startup performance by reducing I/O. For details, read About omni.jar. - The
accessibility.disablecache
preference is no longer supported; it was only exposed for debugging purposes and is no longer used. - Addons whose GUID changes from one version to another can now be updated properly.
- As a side effect of the removal of platform-specific directories in add-on bundles, you can no longer provide different default preferences for each platform.
- By default, extensions are no longer unpacked when they are installed, but are instead run directly from the XPI file. Extensions can use the unpack property in the install manifest to choose the old behavior. Extensions that use binary components, DLLs loaded using js-ctypes, search plugins, dictionaries, and window icons must specify that they need to be unpacked. Extensions that create SQLite database, or do copy things from the filesystem relatively to the extension's directory, may also need to change their code.
- You may now include extensions that automatically get installed at application startup within a customized Firefox.
Other changes
- Only the root chrome.manifest file is loaded
-
Only the root
chrome.manifest
file is loaded now; if you need secondary manifest files to be loaded, you can use themanifest
command in your rootchrome.manifest
to load them. - Gopher support removed
-
The Gopher protocol is no longer supported natively. Continued support is available via the OverbiteFF extension.
- Content process event handling
-
In order to support out-of-process plugins and other multiple-process features, a new API has been introduced to support sending messages across processes.
- Bootstrapped extensions
-
You can now create extensions that can be installed, uninstalled, and upgraded (or downgraded) without requiring a browser restart.
- Default plugin removed
-
The default plugin has been removed. The application plugins folder has also been removed by default, however support for installing plugins via this folder still exists. See Firefox bug 533891.
- Extension Manager replaced by Addon Manager
-
nsIExtensionManager
has been replaced by AddonManager. - Child HWNDs no longer used
-
Firefox no longer creates child HWNDs for its internal use on Windows. If you've written an extension that uses native code to manipulate these HWNDs, your extension will not work on Firefox 4. You'll need to either stop using HWNDs or wrap your code that relies on HWNDs in an NPAPI plugin. That's a lot of work, so if you can avoid using HWNDs directly, you should.
- Gesture changes
-
The three finger up and down swipe gestures on trackpads have been changed to, by default, open and close Firefox Panorama view (neé TabCandy). To change these back to the previous scroll-to-top and scroll-to-bottom commands, open about:config and set
browser.gesture.swipe.down
tocmd_scrollBottom
andbrowser.gesture.swipe.up
tocmd_scrollTop
.