Skip to content

Latest commit

 

History

History
129 lines (88 loc) · 9.25 KB

File metadata and controls

129 lines (88 loc) · 9.25 KB
title slug
Firefox 32 for developers
Mozilla/Firefox/Releases/32

{{FirefoxSidebar}}

普通 Web 开发者应该注意的变化

开发者工具

Highlights:

All devtools bugs fixed between Firefox 31 and Firefox 32.

CSS

  • 默认开启 {{cssxref("mix-blend-mode")}} (Firefox bug 952643)。
  • 在正式版本中默认开启 position:sticky (之前只在 Nightly 和 Aurora 版本中才会开启) (Firefox bug 916315)。
  • implement box-decoration-break: Left/right part of a box-shadow should only be drawn on the first/last continuation of an inline box (Firefox bug 613659).
  • 允许 {{cssxref("flex-grow")}} / {{cssxref("flex-shrink")}} 在 0 和非 0 值之间作 transition , like 'flex-grow: 0.6'(Firefox bug 996945).

HTML

JavaScript

Interfaces/APIs/DOM

  • 实现了 {{domxref("NavigatorLanguage.languages", "navigator.languages")}} 属性和 languagechange 事件。 (Firefox bug 889335)。
  • The {{domxref("Navigator.vibrate()")}} method behavior has been adapted to the latest specification: too long vibrations are now truncated (Firefox bug 1014581).
  • {{domxref("KeyboardEvent.getModifierState")}}() 和 {{domxref("MouseEvent.getModifierState")}}() 支持了 "Accel" 虚拟修饰符 (Firefox bug 1009388)。
  • 实现了 {{domxref("KeyboardEvent.code")}} 属性,不过目前在正式版本中还是禁用状态 (Firefox bug 865649)。
  • Scoped selectors for {{domxref("Document.querySelector()")}} and {{domxref("Document.querySelectorAll()")}}, for example querySelector(":scope > li")have been implemented (Firefox bug 528456).
  • The experimental implementation of the {{domxref("Document.timeline")}} interface, related to the Web Animation API, has been added (Firefox bug 998246). It is controlled by layout.web-animations.api.enabled preference, enabled only on Nightly and Aurora for the moment.
  • The Data Store API has been made available to Web Workers (Firefox bug 949325). It still is only activated for certified applications.
  • The ServiceWorker {{domxref("InstallPhaseEvent")}} and {{domxref("InstallEvent")}} interfaces have been implemented (Firefox bug 967264).
  • The MSISDN Verification API, only activated for privileged apps, has been added (Firefox bug 988469).
  • The Gamepad API is now supported on Firefox for Android (Firefox bug 852935).
  • To match the spec and the evolution of the CSS syntax, minor changes have been done to {{domxref("CSS.escape()")}}. The identifier now can begins with '--' and the second dash must not be escaped. Also vendor identifier are no more escaped. (Firefox bug 1008719)
  • To complete our Hit Regions implementation, {{domxref("MouseEvent.region")}} has been implemented (Firefox bug 979692).
  • The {{domxref("CanvasRenderingContext2D.drawFocusIfNeeded()")}} method is now enabled by default (Firefox bug 1004579).
  • The {{domxref("Navigator.doNotTrack")}} properties now returns '1' or '0', reflecting the HTTP value, instead of 'yes' or 'no' (Firefox bug 887703).
  • XMLHttpRequest.responseURL was implemented (Firefox bug 998076).

MathML

  • 实现了 menclose 标记 phasorangle

SVG

No change.

WebRTC

  • New constraints for WebRTC's {{domxref("NavigatorUserMedia.getUserMedia", "getUserMedia()")}}, width, height, and framerate, have been added, to limit stream dimensions and frame rate (Firefox bug 907352):

    {
      mandatory: {
        width: { min: 640 },
        height: { min: 480 }
      },
      optional: [
        { width: 650 },
        { width: { min: 650 }},
        { frameRate: 60 },
        { width: { max: 800 }},
      ]
    }
  • WebRTC methods which previously used callback functions as input parameters are now also available using JavaScript promises.

Audio/Video

No change.

Security

附加组件 和 Mozilla 开发者应该注意的变化

Xray vision is now applied to JavaScript objects that are not themselves DOM objects: Xrays for JavaScript objects.

A getDataDirectory() method has been added to Addon instances. This method returns the preferred location, within the current profile, for add-ons to store data.

Add-on SDK

Highlights

Details

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

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

XPCOM

  • The nsIUDPSocket interface now provides multicast support through the addition of the new nsIUDPSocket.multicastLoopback, nsIUDPSocket.multicastInterface, and nsIUDPSocket.multicastInterfaceAddr attributes, as well as the nsIUDPSocket.joinMulticast() and nsIUDPSocket.leaveMulticast() methods.

参见

更早期的版本

{{Firefox_for_developers}}