设为首页 收藏本站
查看: 450|回复: 0

Mozilla Firefox 36.0 正式版发布

[复制链接]
累计签到:77 天
连续签到:1 天
发表于 2015-3-4 21:05:14 | 显示全部楼层 |阅读模式
3月21日 深圳 OSC 源创会开始报名罗,送华为海思开发板
DSC0000.jpg   Mozilla今天将Mozilla Firefox 36.0正式版送上了FTP服务器,新版采用Gecko 36作为内核,目前Firefox 36分支还没有出现Windows 64位版本(从nightly版本上看目前性能依然没有调整到良好状态,预计Firefox 37会发展出稳定的产品),如有需要尝试的可以选用Developer Edition版本。
DSC0001.png
  下载地址:
  http://ftp.mozilla.org/pub/firefox/releases/36.0/win32/zh-CN/Firefox%20Setup%2036.0.exe
  了解更多:
  https://developer.mozilla.org/en-US/Firefox/Releases/36
  
  Changes for Web developersDeveloper Tools
  Highlights:

  •   eval sources now appear in the Debugger
  •   Simpler process for connecting to Firefox for Android
  •   Box Model Highlighter works on remote targets
  •   "Invert the call tree" option in the Profiler
  •   Inspect DOM promises in the console
  •   Extra "Paste" commands in the Inspector
  All devtools bugs fixed between Firefox 35 and Firefox 36.
  CSS

  •   The?will-change?property has been enabled by default (bug?961871).
  •   The?white-space?property is now working on??HTML elements (bug?82711).
  •   The?unicode-range?descriptor is now supported by?@font-face?(bug?475891).
  •   The properties?text-decoration-color,?text-decoration-line, and?text-decoration-style?are unprefixed (bug?825004). The prefixed version are still available for some time to ease transition (bug?1097922).
  •   The?text-decoration?property is turned into shorthand property (bug?1039488).
  •   The properties?object-fit?and?object-position?are now supported (bug?624647)
  •   The?contents?value of the?display?property has been experimented implemented. It is preffed off by default (bug?907396).

  •   In?Quirks mode, the?:active?and?:hover?quiver quirk?hasbeen>
  •   The?isolation?property has been implemented (bug?1077872).
  •   CSS??nowapplies on the premultiplied colors, matching the spec and other browsers, and getting rid of unexpected gray colors appearing in them (bug?591600).
  •   Interpolation hint syntax has been added to??(bug?1074056).
  •   The?scroll-behavior?property has been implemented (bug?1010538).
  HTML


  •   Support for??hasbeen added (  ">bug?704320).
  JavaScript

  •   The?ECMAScript 6?Symbol data type has been enabled by default (was available in the Nightly channel since version 33) (bug?1066322):

    •   Symbol
    •   Symbol.for()
    •   Symbol.keyFor()
    •   Object.getOwnPropertySymbols()

  •   The old placeholder string?"@@iterator"?has been replaced with the real ES6 well-known symbol?Symbol.iterator?for the?iterable?interface property key (bug?918828).
  •   Thespec-internal abstract operation?ToNumber(string)?now supports binary (0b) and octal (0o) literals, this is a potentially breaking change fromES5 (bug?1079120).

    •   Number("0b11")?now returns?3, not?NaN.
    •   "0o11" == 9?now returns?true, not?false.

  •   The?const?declaration is now block-scoped and requires an initializer (bug?611388). It also can not be redeclared anymore (bug?1095439).

    •   {const a=1};a?now throws a?ReferenceError?and does not returns?1?anymore due to block-scoping.
    •   const a;?now throws a?SyntaxError?("missing = in const declaration"): An initializer is required.
    •   const a = 1; a = 2;?now also throws a?SyntaxError?("invalid assignment to const a").

  •   The ES7 method?Array.prototype.includes?has been implemented, but for now, it is only enabled in Nightly builds (bug?1069063).
  •   The?delete?operator now triggers the "temporal dead zone" when using with?letand?const?(bug?1074571).
  •   The non-standard?let?blocks and?let?expressions?are deprecated and will now log a warning in the console. Do not use them anymore, they will be removed in the future.
  •   WeakMap?constructor now handles optional iterable argument (bug?1092537).
  Interfaces/APIs/DOM

  •   The?CanvasRenderingContext2D.resetTransform()?method of the Canvas API has been implemented (bug?1099148).
  •   ECDSA is now supported in the Web Crypto API (bug?1034854).
  •   You can now use?WebSockets?in?Workers?(bug?1112054).
  •   Our experimental implementation of WebGL 2.0 is going forward!

    •   The?WebGLQuery?interface is available (bug?1048719).
    •   The?WebGL2RenderingContext.invalidateFrameBuffer()?method has been implemented (bug?1076456).

  •   The?MediaDevices?interface, containing the?Promise-based version of?getUserMedia(), has been added. It is available via?Navigator.mediaDevices?(bug?1033885).

  •   The EME-related?Navigator.requestMediaKeySystemAccess()?method, and the>
  •   The?keyschange?event is now sent when an EME-related CDM change keys in a session (bug?1081755).
  •   Experimental support for virtual reality devices has landed behind the?dom.vr.enabled?preference, off by default (bug?1036604).
  •   The function associated with?RTCPeerConnection.onsignalingstatechange?now receives an event as parameter, as per spec (bug?1075133).
  •   The experimental implementation of Web Animations make progress: the method?AnimationPlayer.play()?and?AnimationPlayer.pause()?are now supported (bug?1070745).
  •   The non-standard?DOMRequest?interface has now a?then()?method (bug?839838).
  •   The CSSOM View scroll behavior controlling methods,?Element.scroll(),?Element.scrollTo(),?Element.scrollBy(), and?Element.scrollIntoView(), have been implemented or extended (bug?1045754?and?bug?1087559).
  •   Assigning to?Element.innerHTML?on an?SVGElement?now create elements in the SVG namespace (bug?886390).
  MathML
  No change.
  SVG
  No change.
  Audio/Video
  No change.
  Networking

  •   Support for SPDY/3 has been removed; support for SPDY/3.1 is still available (bug?1097944).
  Security

  •   RC4is now considered as insecure and all UI indicators will react as such;SSLv3 has been disabled by default in Firefox 34, but the UI has been changed to help the user better understand what is happening (bug?1093595).
  •   The?form-action?directive of CSP 1.1 is now supported (bug?529687).
  Changes for add-on and Mozilla developersJavaScript code modules

  •   PromiseUtils.resolveOrTimeout?is implemented (bug?1080466).
  •   PromiseUtils.defer?(a replacement for?Promise.defer) is implemented (bug?1093021).
  XUL
  No change.

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-43212-1-1.html 上篇帖子: Semantic UI 1.10.0 发布,Web UI 框架 下篇帖子: JBoss Tools 4.3.0.Alpha1 for Eclipse Mars
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表