lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
300楼#
发布于:2020-02-13 23:56
(75)img 标签支持 loading="lazy" 属性 (2010-02-13)
Bug 1542784 - (lazyload) Support <img loading="lazy" /> lazy-loading
暂时默认关闭,(2020-02-14)已默认开启 dom.image-lazy-loading.enabled

(75) 地址栏下拉列表的结果去掉 "www." , 除非关闭  FF72 加入的 browser.urlbar.view.stripHttps,或者 browser.urlbar.trimURLs (地址栏不隐藏http://)
Bug 1614957 - strip www. prefix in address bar results

(75)如今打开 megabar (browser.urlbar.update1) 地址栏下拉按钮将默认隐藏。
Bug 1616862 - Hide the address bar dropmarker based on the browser.urlbar.update1 pref rather than browser.urlbar.openViewOnFocus
可用 CSS 强制显示,放在 userChrome.css 中。
@-moz-document url("chrome://browser/content/browser.xhtml"){
    .urlbar-history-dropmarker{
        display: -moz-box !important;
    }
}


(75)JavaScript:实现类静态属性语法
Bug 1535804 - Implement the Static class features proposal
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2024-04-25
  • 发帖数18483
  • 经验4837枚
  • 威望5点
  • 贡献值4316点
  • 好评度1116点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
301楼#
发布于:2020-02-27 16:27
(74) about:logins 排列显示登录名可根据Z-A顺序显示。
https://bugzilla.mozilla.org/show_bug.cgi?id=1592673


    


(74)原先要在 WebExtensions 使用嵌入的实验性 API,需要在 about:config 里面将 extensions.legacy.enabled 改成 true,现在这个参数改成 extensions.experiments.enable。
https://bugzilla.mozilla.org/show_bug.cgi?id=1524327
Firefox More than meets your experience
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2024-04-25
  • 发帖数18483
  • 经验4837枚
  • 威望5点
  • 贡献值4316点
  • 好评度1116点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
302楼#
发布于:2020-02-27 16:42
(75)PiP播放视频时候,Win10 锁屏界面也可以显示媒体控件。进入 about:config,将 media.hardwaremediakeys.enabled 设置为 true 开启。



Firefox More than meets your experience
lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
303楼#
发布于:2020-02-27 23:36
(75)Web 开发相关:网站设置 cookie 默认为 sameSite=lax(Chrome 计划在 80 开启。预计一波网站登录出问题)
对应设置 network.cookie.sameSite.laxByDefault
Bug 1604212 - Enable sameSite=lax by default on Nightly

(75)CSS 相关:Skia 图形后端实现圆锥渐变。
如果开启了 WebRender,将默认使用 Skia 后端渲染。否则使用 Direct2D,后者暂时还没实现。
对应首选项设置 layout.css.conic-gradient.enabled
Bug 1616587 - Implement conic-gradient for Skia graphics backend

(75)lazy loading 元素提供触发边界首选项设置。
dom.image-lazy-loading.root-margin.<top|right|bottom|left> 默认单位为像素值
dom.image-lazy-loading.root-margin.<top|right|bottom|left>.percentage 切换单位为百分率(相对于视口)
Bug 1618601 - Make lazy loading root margin configurable.

(75)系统黑暗模式下 about:blank 颜色变为黑色,消除加载连接之前刺眼的空白过渡。
Bug 1408122 - Dark theme should apply dark colors to about:blank background to avoid white flashes

(75)提供一个覆盖本地平台 DNS 结果的 API(开发者说是提供单元测试或开发工具用)
很多年前我想要的 API,不用辛苦去编辑 hosts 文件,可惜如今不支持旧式扩展,只能特权扩展或 UC 脚本才能用上了。
真心希望以后能做成 webext API。
Bug 1618130 - Add API to override platform DNS results

(75)三道杠菜单中加入“从其它浏览器中导入”的菜单项。
Bug 1618346 - Add browser import to Firefox menu
f0rest
小狐狸
小狐狸
  • UID30878
  • 注册日期2009-10-29
  • 最后登录2022-05-26
  • 发帖数61
  • 经验56枚
  • 威望0点
  • 贡献值26点
  • 好评度2点
  • 社区居民
  • 忠实会员
304楼#
发布于:2020-03-15 14:24
现在新的WE扩展可以用多线程下载吗
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2024-04-25
  • 发帖数18483
  • 经验4837枚
  • 威望5点
  • 贡献值4316点
  • 好评度1116点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
305楼#
发布于:2020-03-15 18:12
f0rest:现在新的WE扩展可以用多线程下载吗回到原帖
很早就有了 https://addons.mozilla.org/zh-CN/firefox/addon/multi-threaded-dm/
Firefox More than meets your experience
lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
306楼#
发布于:2020-03-15 21:46
(76)允许双击全屏画中画窗口。
Bug 1607882 - Double clicking the picture-in-picture popout doesn't send it to fullscreen

(76)查看/修改保存的网站登录密码,现在像 Chrome 一样,需要验证系统登录账户密码。(包括设置/撤销主密码)
Bug 1194529 - Ask the user for their OS account password before showing the passwords in the password manager
五分钟内不再需要验证
Bug 1611914 - Don't re-prompt for a master password within N seconds of re-authenticating with it


(76)HTTPS Only 模式,此模式下默认将 http 提升为 https。如果该网站不支持 https,将无法显示。
dom.security.https_only_mode 默认为 false
Bug 1620242 - HTTPS Only Mode - Basic implementation

(76)允许选择复制禁用状态下的输入框中的文本。
Bug 253870 - Can't copy text from disabled textarea or text input.

(76)默认在 Nightly 中打开 dom.media.mediasession.enabled
Bug 1620077 - Turn on the pref 'dom.media.mediasession.enabled' on Nightly
dszeal
小狐狸
小狐狸
  • UID57500
  • 注册日期2020-02-19
  • 最后登录2020-04-01
  • 发帖数1
  • 经验1枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
307楼#
发布于:2020-03-22 04:52
很详细,有价值!谢谢lz~
lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
308楼#
发布于:2020-03-22 14:27
(74 & 75)重新打开支持 TLS 1.0/1.1。
Bug 1623536 - Re-enable TLS 1.0 in Firefox 75 (Beta)
Bug 1623534 - Remote pref override to re-enable TLS 1.0
https://www.fxsitecompat.dev/en-CA/docs/2020/tls-1-0-1-1-support-has-been-removed/
Update: Mozilla is going to temporarily re-enable the
TLS 1.0/1.1 support in Firefox 74 and 75 Beta. The preference change
will be remotely applied to Firefox 74, which has already been shipped.
This is because many people are currently forced to work at home and
relying on online tools amid the novel coronavirus (COVID-19) outbreak,
but some of critical government sites still don’t support TLS 1.2 yet.
Also due to COVID-19, Google has postponed the release of Chrome 81 that would remove their TLS 1.0/1.1 support. We’ll update this note when the situation has changed.
fang5566
管理员
管理员
  • UID3719
  • 注册日期2005-03-07
  • 最后登录2024-04-25
  • 发帖数18483
  • 经验4837枚
  • 威望5点
  • 贡献值4316点
  • 好评度1116点
  • 社区居民
  • 最爱沙发
  • 忠实会员
  • 终身成就
309楼#
发布于:2020-03-22 23:25
(75)支持从 Windows 版本的 Chrome/Edge 80+ 版本导入登录信息。
https://bugzilla.mozilla.org/show_bug.cgi?id=1613337
Firefox More than meets your experience
lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
310楼#
发布于:2020-03-23 20:02
(76)支持 Unicode 13
Bug 1610512 - Update our in-tree ICU to 66 and update to Unicode 13

(76)允许通过配置项黑名单域名列表禁用 Cookie 默认设为 sameSite=lax 的行为。
1623313 - Implement a way to disable sameSite=lax by default for a list of hostnames
network.cookie.sameSite.laxByDefault.disabledHosts 值为使用英文逗号分割的域名列表。

(76)增加一个临时禁用查看密码时需要系统登录验证弹窗的设置项,待功能稳定后最终将会删除。
Bug 1626138 - Add a pref to disable the OS authentication prompt
signon.management.page.os-auth.enabled
This pref will be temporary until we are confident in the implementation and that the feature will not cause too much churn during the Covid-19 pandemic.

(76)允许在 about:addons 页面中拖放安装非 xpi 后缀的扩展文件。
Bug 1559392 - [about:addons] Support installing non-.xpi files with drag and drop
lonely_8
非常火狐
非常火狐
  • UID30273
  • 注册日期2009-09-03
  • 最后登录2022-08-09
  • 发帖数733
  • 经验469枚
  • 威望0点
  • 贡献值86点
  • 好评度147点
  • 社区居民
  • 忠实会员
311楼#
发布于:2020-04-09 18:41
(77)移除 browser.urlbar.update1 开关。
Bug 1627969 - Remove the megabar pref

(77)默认在 Nightly 中打开 HTTP3
Bug 1628461 - Turn on HTTP3 on Nightly

禁用了。。Bug 1629057 - Disable Http3

(77)色彩管理模式的值改为 1 即同时应用到 CSS 颜色,以前为 2 仅应用于图片。
Bug 455077 - Enable full color_management by default (i.e. set gfx.color_management.mode = 1)

(77)跟踪保护的自定义项中,新增了一个可选项。 (Cross-site and social media trackers, and isolate remaining cookies.)
Bug 1625228 - Add Dynamic FPI as an option to about:preferences#privacy
选择该项对应的配置 network.cookie.cookieBehavior 的值为 5;
控制该选项的显隐为 browser.contentblocking.reject-and-isolate-cookies.preferences.ui.enabled。
https://www.ghacks.net/2020/04/17/mozilla-adds-dynamic-first-party-isolation-option-to-firefox-77/


(77)JavaScript 相关:实现逻辑赋值运算符提案
Bug 1629106 - Implement Logical Assignment Operators proposal

(77)CSS 相关:实现伪类选择器函数 :is() 和 :where()
Bug 1629735 - Implement parsing and selector-matching for :is() and :where()
Bug 1509418 - Implement `:is()` and `:where()` selectors
layout.css.is-where-selectors.enabled 默认在 Nightly 中打开。

(77)继在 FF70 中默认隐藏地址栏 EV 证书拥有者组织名称显示后,现在彻底移除 security.identityblock.show_extended_validation 开关参数和相关代码。
Bug 1599729 - Remove security.identityblock.show_extended_validation pref and related UI code

(77) 默认在 Nightly 中开启 TLS Delegated Credentials。
Bug 1624378 - Enable TLS Delegated Credentials by default in Nightly
security.tls.enable_delegated_credentials
相关介绍:
https://blog.mozilla.org/security/2019/11/01/validating-delegated-credentials-for-tls-in-firefox/
https://cloud.tencent.com/developer/news/467541

(77)HTTPS Only 模式添加两个例外设置。
Bug 1631384 - HTTPS Only Mode - Exceptions for loopback and local IP addresses
本地 IP 地址强制提升为 https,默认关闭:dom.security.https_only_mode.upgrade_local
.onion 顶级域名强制提升为 https ,默认关闭:dom.security.https_only_mode.upgrade_onion

(77)实验性允许禁用 F12。
Bug 1630228 - Experiment disabling F12 by default
Note: if you want to test this locally on Nightly or local builds, make sure you flip:
  • devtools.experiment.f12.shortcut_disabled to true
  • devtools.selfxss.count to 0
The first preference enables the experiment, and the second preference is to flag the profile as a "new devtools user".


(77)移除了禁用多重标签选择的设置。
Bug 1634013 - Remove the browser.tabs.multiselect pref

(77)移除了静止静音标签图标的设置。
Bug 1634012 - Remove the browser.tabs.showAudioPlayingIcon pref
70599
火狐狸
火狐狸
  • UID10222
  • 注册日期2005-12-01
  • 最后登录2021-01-27
  • 发帖数114
  • 经验50枚
  • 威望0点
  • 贡献值28点
  • 好评度1点
  • 社区居民
  • 忠实会员
312楼#
发布于:2020-04-24 18:47
最近的每夜版,有如下默认动作:
1、在地址栏中输入非URL格式字符;
2、按下回车;
3、此时火狐将会使用默认搜索引擎搜索前面输入的字符,同时在页面顶部弹出一个条幅“要前往'xxxx'吗?|带我前往'xxxx'|不,谢谢”


请问怎么关闭这个条幅/阻止此默认动作?
Nightly@OS X
新垣结衣
火狐狸
火狐狸
  • UID55997
  • 注册日期2017-09-25
  • 最后登录2022-08-31
  • 发帖数103
  • 经验115枚
  • 威望0点
  • 贡献值64点
  • 好评度10点
  • 忠实会员
  • 社区居民
313楼#
发布于:2020-04-24 22:48
70599:最近的每夜版,有如下默认动作:
1、在地址栏中输入非URL格式字符;
2、按下回车;
3、此时火狐将会使用默认搜索引擎搜索前面输入的字符,同时在页面顶部弹出一个条幅“要前往'xxxx'吗?|带我前往'xxxx'|不,谢谢”


...
回到原帖
您的 DNS 有问题。试试换 BAT 的DNS,若在路由器中设置过,同样更换
70599
火狐狸
火狐狸
  • UID10222
  • 注册日期2005-12-01
  • 最后登录2021-01-27
  • 发帖数114
  • 经验50枚
  • 威望0点
  • 贡献值28点
  • 好评度1点
  • 社区居民
  • 忠实会员
314楼#
发布于:2020-04-25 12:21
新垣结衣:您的 DNS 有问题。试试换 BAT 的DNS,若在路由器中设置过,同样更换回到原帖
不是DNS的问题,DNS完全正常,这应该是最近每夜版新加入的特性
Nightly@OS X
游客

返回顶部