Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/mozilla/firefox/releases/33/index.md
6581 views
---
title: Firefox 33 for developers slug: Mozilla/Firefox/Releases/33
---

{{FirefoxSidebar}}

Firefox 33 was released on October 14, 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

Highlights

  • Event listeners popup

  • @media sidebar

  • Add new rule

  • Edit keyframes

  • Cubic bezier editor

  • Transform highlighter

  • Persistent disable cache

  • New Commands

  • Editor preferences

  • WebIDE

For details please see the hacks post. Special thanks to the 33 contributors that added all the features and fixes in this release.

CSS

  • Implemented {{cssxref("@counter-style")}} rule (Firefox bug 966166).

  • Unprefixed ethiopic-numeric, persian, arabic-indic, devanagari, bengali, gurmukhi, gujarati, oriya, tamil, telugu, kannada, malayalam, thai, lao, myanmar, khmer, cjk-heavenly-stem, cjk-earthly-branch in {{cssxref("list-style-type")}} (Firefox bug 985825 and Firefox bug 1063856).

  • Added support for mongolian, disclosure-open and disclosure-closed counter styles in {{cssxref("list-style-type")}} (Firefox bug 982355 and Firefox bug 1063856).

  • Fixed CSS animations with empty keyframes rule so they also dispatch events (Firefox bug 1004377).

  • Added support for rebeccapurple, a new {{cssxref("<color>")}} name defined in CSS Colors level 4 (Firefox bug 1024642).

  • Our experimental implementation of CSS Fonts Level 3 progresses. Its activation is governed by the layout.css.font-features.enabled preference, enabled by default in Nightly. Newly implemented features are:

    • The fallback algorithm of {{cssxref("font-variant-caps")}}, creating synthetic alternates for missing glyphs (Firefox bug 961558).

    • The {{cssxref("font-synthesis")}} CSS property has been implemented (Firefox bug 871453).

HTML

  • Added the experimental support for {{htmlelement("picture")}} element (Firefox bug 870022), behind the dom.image.picture.enabled preference (off by default).

  • The {{HTMLElement("label")}}, especially without a {{htmlattrxref("for", "label")}} attribute, doesn't apply anymore to a <input type=hidden> field (Firefox bug 597650). The previous behavior wasn't spec compliant.

  • The link annotation noreferrer has been implemented on {{HTMLElement("a")}} elements. <a rel="noreferrer"> will not include the URL of the referrer in the HTTP request sent to fetch it (Firefox bug 530396). Note that this work only for in-page links, not for linked clicked via the UI, like via contextual menus.

  • On Android, support for two new values for the {{htmlattrxref("name", "meta")}} attribute of {{HTMLElement("meta")}} has been added: msapplication-TileImage and msapplication-TileColor (Firefox bug 1014712). Example:

    <meta name="msapplication-TileImage" content="images/benthepcguy-144.png" /> <meta name="msapplication-TileColor" content="#d83434" />

JavaScript

  • The non-standard method {{jsxref("Number.toInteger()")}} has been removed (Firefox bug 1022396).

  • The {{jsxref("Map.prototype.set()")}}, {{jsxref("WeakMap.prototype.set()")}} and {{jsxref("Set.prototype.add()")}} methods are now chainable, return their equivalent objects and no longer undefined (Firefox bug 1031632).

  • A default parameter is evaluated before function declarations inside the function body, so those functions cannot be referred from default parameter (Firefox bug 1022962).

  • Shorthand properties are now allowed in object literals: if not explicitly defined, property keys are initialized by variables of the same name. E.g. function f(x, y) { return {x, y}; } is equivalent to function f(x, y) { return {x: x, y: y}; } (Firefox bug 875002).

  • The parsing of yield and yield* has been updated to conform with the latest ES2015 specification (Firefox bug 981599).

  • The non-standard hasOwn trap has been removed (Firefox bug 980565).

Interfaces/APIs/DOM

  • The {{domxref("RadioNodeList")}} API has been implemented and the selected radio button is accessible via {{domxref("RadioNodeList.value")}} (Firefox bug 779723).

  • The {{domxref("DOMMatrix")}} has been added (Firefox bug 1018497).

  • A non-standard (but implemented in other browsers) DOMException.stack property has been added. It returns a string with a human-friendly formatted stack (Firefox bug 857648), in the same format as the existing non-standard {{jsxref("Error.stack")}} property.

  • For {{HTMLElement("canvas")}}, the method {{domxref("CanvasPattern.setTransform()")}}, allowing to modify a pattern using the {{domxref("DOMMatrix")}} representation of a linear transform (Firefox bug 1019257).

  • Our experimental implementation of Media Source Extensions, behind the media.mediasource.enabled preference, enabled by default in Nightly and Aurora only, now supports MP4 (Firefox bug 1000686).

  • The properties {{domxref("HTMLMediaElement.audioTracks")}} and {{domxref("HTMLMediaElement.videoTracks")}} have been experimentally implemented. They are controlled by the media.track.enabled, off by default (Firefox bug 744896).

  • The non-standard XMLHttpRequest.mozBackgroundRequest() is no more accessible from Web sites. Only Firefox-internal code (Chrome code) can use it (Firefox bug 1035242).

  • The touchenter and touchleave events, removed from the specification, have been removed (Firefox bug 1036444).

  • The formerly called loaded event, sent on a {{domxref("HTMLTrackElement")}} has been renamed {{domxref("Window/load_event", "load")}} to match the specification (Firefox bug 1035505).

  • The IndexedDB interface FileHandle has been renamed in {{domxref("IDBMutableFile")}} (Firefox bug 1006485).

  • The IndexedDB interface LockedFile has been renamed in {{domxref("IDBFileHandle")}} (Firefox bug 1006485).

  • The {{domxref("ServiceWorker")}} interface has been implemented, behind the dom.serviceWorkers.enabled flag (Firefox bug 903441).

  • The {{domxref("NetworkInformation.type")}} now also support the "unknown" value (Firefox bug 1023029).

MathML

SVG

No change.

Audio/Video/WebRTC

  • The RTCOfferOptions dictionary, used to provide options when calling {{domxref("RTCPeerConnection.createOffer()")}}, has been implemented.

WebGL

  • {{domxref("EXT_blend_minmax")}} is now exposed. It extends blending capabilities by adding two new blend equations: producing the minimum or maximum color components of the source and destination colors (Firefox bug 973815).

Security

Changes for add-on and Mozilla developers

Add-on SDK

Highlights

Details

GitHub commits made between Firefox 32 and Firefox 33. This will not include any uplifts made after this release entered Aurora.

Bugs fixed between Firefox 32 and Firefox 33. This will not include any uplifts made after this release entered Aurora.

Older versions

{{Firefox_for_developers('32')}}