---
title: Firefox 50 для разработчиков
slug: Mozilla/Firefox/Releases/50
translation_of: Mozilla/Firefox/Releases/50
---
{{FirefoxSidebar}}
Установить Firefox Developer EditionFirefox 50 был выпущен 15 ноября 2016 года.
В этой статье перечислены ключевые изменения, которые полезны не только для веб-разработчиков, но и для разработчиков Firefox и Gecko, а также для разработчиков приложений.
Изменения, для веб-разработчиков
HTML
- Стиль элемента по умолчанию {{HTMLElement("bdo")}} теперь определён как {{cssxref("unicode-bidi")}} имеющий значение
isolate-override
({{bug(1249497)}}).
- Установка атрибута {{htmlattrxref("src", "track")}} элемента {{HTMLElement("track")}} теперь работает корректно ({{bug(1281418)}}).
- Атрибут
referrerpolicy
у элементов {{HTMLElement("area")}}, {{HTMLElement("a")}}, {{HTMLElement("img")}}, {{HTMLElement("iframe")}} and {{HTMLElement("link")}} теперь доступен по умолчанию ({{bug(1223838)}}, {{bug(1264165)}}).
CSS
- Border-radiused corners with dashed and dotted styles are now rendered with the specified style instead of a solid style ({{bug(382721)}}).
- The non-standard {{cssxref(":-moz-full-screen-ancestor")}} pseudo-class selector has been removed ({{bug(1199529)}}).
- The {{cssxref("box-sizing")}}
: padding-box
has been removed, since it’s no longer a part of the spec and Firefox was the only major browser implementing it ({{bug(1166728)}}).
- The three values
isolate
, isolate-override
, and plaintext
of the {{cssxref("unicode-bidi")}} property have been unprefixed ({{bug(1141895)}}).
- In quirks mode, the bullet of a list item now inherits the size of the list, like in standards mode ({{bug(648331)}}).
- The {{cssxref(":in-range")}} and {{cssxref(":out-of-range")}} pseudo-classes have changed behavior to not match disabled or read-only inputs ({{bug(1264157)}}).
- The {{cssxref(":any-link")}} pseudo-class is now unprefixed ({{bug(843579)}}).
- The
space
value for {{cssxref("border-image-repeat")}} has been implemented ({{bug(720531)}}).
JavaScript
- The ES2015 {{jsxref("Symbol.hasInstance")}} property has been implemented ({{bug(1054906)}}).
- The ES2017 {{jsxref("Object.getOwnPropertyDescriptors()")}} method has been implemented ({{bug(1245024)}}).
- The behavior of \W in {{jsxref("RegExp")}} with unicode and ignoreCase flags is changed to match recent draft spec. Now it doesn't match to K, S, k, s, and KELVIN SIGN (U+212A), and LATIN SMALL LETTER LONG S (U+017F) ({{bug(1281739)}}).
All devtools bugs fixed between Firefox 49 and Firefox 50.
HTTP
- The experimental (and deprecated) SPDY 3.1 is now disabled by default {{bug(1287132)}}.
- Support for {{HTTPHeader("X-Content-Type-Options")}} has been added ({{bug(471020)}}).
- The cookie prefixes
__Host-
and __Secure-
have been implemented. See {{HTTPHeader("Set-Cookie")}} and {{bug(1283368)}}.
- The {{HTTPHeader("Referrer-Policy")}} header has been implemented {{bug(1264164)}}.
Security
- The {{htmlattrxref("ping", "a")}} attribute of {{htmlelement("a")}} element now abides by the
connect-src
CSP 1.1 policy directive ({{bug(1100181)}}).
- Support for the
sandbox
CSP directive has been added ({{bug(671389)}}).
- It's now possible to set a content security policy for workers ({{bug (959388)}}).
- The {{domxref("Navigator.sendBeacon()")}} method no longer throws an exception if the beacon data couldn't be sent due to a Content Security Policy restriction; instead, it returns
false
as expected ({{bug(1234813)}}).
Networking
- When a error has happened during an asynchronous {{domxref("XMLHttpRequest")}}, the {{domxref("XMLHttpRequest.getAllResponseHeaders()")}} method now returns an empty string ({{bug(1286744)}}).
- Instead of returning a
NetworkError
, asynchronous {{domxref("XMLHttpRequest")}} that fails for CORS or other network constraints now raises an {{event("error")}} that can be catched like any other error ({{bug(709991)}}).
- {{domxref("XMLHttpRequest.getResponseHeader()")}} and {{domxref("XMLHttpRequest.getAllResponseHeaders()")}} now also return empty headers by default. This can be controlled via the preference
network.http.keep_empty_response_headers_as_empty_string
({{bug(918721)}}).
- The
only-if-cached
option has been added to Request.cache
({{bug(1272436)}}).
DOM
- The
once
option for {{domxref("EventTarget.addEventListener()")}} is now supported ({{bug(1287706)}}).
- The interface {{domxref("NodeList")}} are now iterable and the methods {{domxref("NodeList.forEach()", "forEach()")}}, {{domxref("NodeList.values()", "values()")}}, {{domxref("NodeList.entries()")}} and {{domxref("NodeList.keys()")}} are now available ({{bug(1290636)}}).
- The interface {{domxref("DOMTokenList")}} are now iterable and the methods {{domxref("DOMTokenList.forEach()", "forEach()")}}, {{domxref("DOMTokenList.values()", "values()")}}, {{domxref("DOMTokenList.entries()")}} and {{domxref("DOMTokenList.keys()")}} are now available ({{bug(1290636)}}).
- The methods {{domxref("Document.createElement()")}} and {{domxref("Document.createElementNS()")}} now have an optional
options
parameter for creating custom elements ({{bug(1276579)}}).
SVG
- The
allowReorder
attribute has been dropped and the behavior it was setting is now the default for SVG {{SVGElement("switch")}} elements ({{bug(1279690)}}).
- The
defer
keyword for the {{SVGAttr("preserveAspectRatio")}} attribute on SVG {{SVGElement("image")}} elements has been removed to follow the latest SVG2 specification ({{bug(1280425)}}).
Drag and Drop API
- The {{domxref("DataTransfer.items")}} property has been implemented, allowing access to multiple items being dragged and dropped using the HTML Drag and Drop API. To allow this, the {{domxref("DataTransferItem")}} and {{domxref("DataTransferItemList")}} interfaces are now supported as well ({{bug(906420)}}). This is enabled by default.
- The old, obsolete Firefox specific drag and drop API events
dragdrop
and draggesture
are no longer supported. Be sure to update any code still using them to use the HTML drag and drop API ({{bug(1162050)}}.
Pointer Lock API
- The Pointer Lock API is now unprefixed ({{bug(991899)}}).
- Before Firefox 50,
requestPointerLock()
asked for permission using a doorhanger, and pointer lock would not be enabled until the user granted permission. From Firefox 50, pointer lock is like the fullscreen API: it's granted immediately, but a notification is displayed explaining to the user how to exit ({{bug(1273351)}}).
IndexedDB
- A {{event("close")}} event is now sent to the {{domxref("IDBDatabase")}} object when the corresponding database is unexpectedly closed ({{bug(1151017)}}).
Service Workers
- The {{domxref("WindowClient.navigate()")}} method has been implemented. This method lets you open a specified URL into a client window which is being controlled by the service worker ({{bug(1218148)}}).
WebGL
- The {{domxref("EXT_shader_texture_lod")}} WebGL extension has been implemented ({{bug(1111689)}}).
- The texImage methods have been updated for WebGL 2 to implement PBOs (
PIXEL_UNPACK_BUFFER
) ({{bug(1280499)}}).
WebRTC
- Adding a track to a {{domxref("MediaStream")}} now generates the {{event("addtrack")}} event as described in the specification. The event is of type {{domxref("MediaStreamTrackEvent")}} and is fired on the stream to which the track was added. You can use either {{domxref("EventTarget.addEventListener", "MediaStream.addEventListener('addtrack', ...)")}} or the {{domxref("MediaStream.onaddtrack")}} property to handle
"addtrack"
events.
- The {{domxref("MediaStreamTrack")}} interface now supports the {{event("ended")}} event and the {{domxref("MediaStreamTrack.onended")}} event handler.
- Firefox now supports the {{domxref("MediaStreamTrack.readyState")}} property, which indicates whether the track is live or permanently ended.
- The {{domxref("MediaStreamTrack")}} methods {{domxref("MediaStreamTrack.getConstraints", "getConstraints()")}} and {{domxref("MediaStreamTrack.getSettings", "getSettings()")}} have been implemented; these let you get the most recently applied set of customized property constraints and the actual values of all of the track's constrainable properties, respectively. The accompanying data types have been documented as well.
- The {{domxref("RTCDataChannel.stream")}} property has been removed. This was replaced with {{domxref("RTCDataChannel.id")}} in Firefox 24, but was supported for backward compatibility. Please be sure to update your code to use the
id
property if you haven't done so yet.
Web Audio API
- The {{domxref("PannerNode")}} interface now supports the 3D Cartesian space properties for the position ({{domxref("PannerNode.positionX")}}, {{domxref("PannerNode.positionY")}}, and {{domxref("PannerNode.positionZ")}}) and directionality ({{domxref("PannerNode.orientationX")}}, {{domxref("PannerNode.orientationY")}}, {{domxref("PannerNode.orientationZ")}}) of an audio source.
- The interface {{domxref("IIRFilterNode")}}, which implements a general {{interwiki("wikipedia", "infinite impulse response")}} (IIR) filter, has been implemented.
- Throttling in background tabs of timers created by {{domxref("WindowTimers.setInterval", "Window.setInterval()")}} and {{domxref("WindowTimers.setTimeout", "Window.setTimeout()")}} no longer occurs if a Web Audio API {{domxref("AudioContext")}} is actively playing sound. This should help prevent issues with timing-sensitive audio playback (such as music players generating individual notes using timers) in the background ({{bug(1181073)}}).
Audio/Video
- The
AlignSetting
enum (representing possible values for {{domxref("VTTCue.align")}}) incorrectly previously included the value "middle"
instead of "center"
. This has been corrected ({{bug(1276130)}}).
- The non-standard and experimental method {{domxref("HTMLMediaElement.seekToNextFrame()")}} now seeks to the next frame in the media asynchronously, rather than synchronously, and returns a {{jsxref("Promise")}} which resolves once the seek is complete.
- The implementation of {{domxref("HTMLTrackElement")}} has been corrected to allow {{HTMLElement("track")}} elements to load resources even if not in a document ({{bug(871747)}}).
Battery API
- The {{domxref("navigator.battery")}} property, which has been deprecated since Firefox 43, is now obsolete and has been removed. Use the {{domxref("navigator.getBattery()")}} method instead to get a battery {{jsxref("Promise")}}, which will resolve when the {{domxref("BatteryManager")}} is available for use; the {{domxref("BatteryManager")}} is passed into the fulfillment handler for the promise ({{bug(12593355)}}).
Files and directories
- A subset of the File and Directory Entries API has been implemented, to improve compatibility with sites that were previously only compatible with Google Chrome ({{bug(1265767)}}).
- The asynchronous API interfaces have been implemented, with the caveat that only reading of files is supported; for example, the {{domxref("FileSystemFileEntry.createWriter()")}} method is a no-op.
- These interfaces have been implemented:
- {{domxref("FileSystem")}}
- {{domxref("FileSystemEntry")}} (properties only; the methods have not been implemented)
- {{domxref("FileSystemFileEntry")}} (except for {{domxref("FileSystemFileEntry.createWriter", "createWriter()")}})
- {{domxref("FileSystemDirectoryEntry")}} (except for {{domxref("FileSystemDirectoryEntry.removeRecursively", "removeRecursively()")}})
- {{domxref("FileSystemDirectoryReader")}}
- {{domxref("HTMLInputElement.webkitdirectory")}} as well as the {{HTMLattrxref("webkitdirectory", "input")}} attribute of the {{HTMLElement("input")}} element have been implemented; this lets you configure a file input to accept directories instead of files ({{bug(1258489)}}).
- {{domxref("HTMLInputElement.webkitEntries")}} has been implemented; this returns an array of {{domxref("FileSystemEntry")}}-based objects representing the selected items.
- {{domxref("File.webkitRelativePath")}} has been implemented; this contains the path of the file relative to the root of the containing {{domxref("FileSystemDirectoryEntry")}} that was among the items in the list returned by {{domxref("HTMLInputElement.webkitGetEntries()")}}.
- See File and Directory Entries API support in Firefox for details about what we do and do not support in this API.
- These APIs are now enabled by default; some were previously available but only behind a preference ({{bug(1288683)}}).
- We've implemented {{domxref("DataTransferItem.webkitGetAsEntry()")}} as part of the File and Directory Entries API; this lets you obtain a {{domxref("FileSystemEntry")}} representing a dropped file ({{bug(1289255)}}). This is enabled by default.
- The
HTMLInputElement.directory
property, part of the Directory Upload API proposal, has been renamed to allowdirs
({{bug(1288681)}}). This property is hidden behind a preference.
Смотрите также
Другие версии
{{Firefox_for_developers(49)}}