chromium

谷歌最新通知:这些设备将无法再使用新Chrome浏览器!

僤鯓⒐⒋嵵緔 提交于 2021-02-20 16:45:22
据谷歌浏览器团队发布的最新支持文档,Chrome将不再为某些特别老的处理器提供支持。 换言之,就是这些老旧设备将无法再安装使用新的Chrome浏览器。 根据最新文档,这些受影响的老旧设备都没有对SSE3指令集的支持,主要是包含早于Intel Core 2 Duo和AMD Athlon 64处理器的设备。 如果还有用户在用这些上古CPU的话,那么或许现在会是一个更新设备的契机。 据了解,SSE3是Intel基于SSE2发展出来的指令集,主要增强了CPU在处理视频编码、线程同步、复杂算法等操作时的性能表现。 SSE3最早是在Intel于2004年推出基于Prescott核心的Pentium 4 CPU上,而AMD也紧随其后在2005年为Venice以及San Diego核心的Athlon 64新增了SSE3的子集。 现在,从Chrome 89版开始,Chrome将不会在没有SSE3指令集的Windows装置上运行。 如果用户的设备不支持SSE3的话,那么在尝试运行Chromium 89及以上版本时会导致崩溃。 考虑到不支持SSE3指令集的CPU都已经至少有15年的历史,因此谷歌认为受到这个决定影响的用户数量是极少的: “我们的分析表明,目前只有非常少量运行Windows系统的装置所使用的CPU是不支持SSE3的。” 不过,谷歌还是会给这部分用户提明显的警告

Android 9 WebView (also admob ads) not loading after Chrome update

荒凉一梦 提交于 2021-02-18 21:11:58
问题 We have an application that depends heavily on web views we noticed after last week that if an android 9 user spent some time loading webviews about 10 to 30 after that webviews just show blank page and loading progress gets stock at 10% Also admobe native ads stop showing the only thing changed was chrome update to 77.0.3865.73 we tested on android 9 that has not updated to that version everything works perfectly ( chrome 74.0.3729.136) when debugging the only message I get is : E/chromium:

Android 9 WebView (also admob ads) not loading after Chrome update

人走茶凉 提交于 2021-02-18 21:10:03
问题 We have an application that depends heavily on web views we noticed after last week that if an android 9 user spent some time loading webviews about 10 to 30 after that webviews just show blank page and loading progress gets stock at 10% Also admobe native ads stop showing the only thing changed was chrome update to 77.0.3865.73 we tested on android 9 that has not updated to that version everything works perfectly ( chrome 74.0.3729.136) when debugging the only message I get is : E/chromium:

How can I remove the styles from the pseudo element -internal-input-suggested?

♀尐吖头ヾ 提交于 2021-02-18 12:33:04
问题 As of the version 76.0.3809.100 of Google Chrome, I have a new pseudo element to autocomplete the inputs. I want the autocomplete function but I need remove the styles by default. <div pseudo="-internal-input-suggested" id="placeholder" style="display: block !important;"> myEMail@gmail.com </div> Styles applied by default on Chrome: input::-internal-input-suggested, textarea::-internal-input-suggested { font: 400 13.3333px Arial !important; } I'm trying overwrite with the same input::

electron热更新与windows下的安装包

前提是你 提交于 2021-02-17 10:46:29
帮朋友公司做了点东西,他说有很多bug,我一看,基本问题都是浏览器兼容引起的,而electron内带Chromium内核,正好一直想尝试下electron,所以研究了一波。这里只是简单的使用electron作为壳,把自己的项目嵌进去,更多深入研究以后再来。 打包自己的项目 这里没啥说的自己的项目打包下来,类似下面 快速开始electron 上手electron,官方提供了一个非常好的快速上手实例"electron-quick-start"。 git clone https://github.com/electron/electron-quick-start cd electron-quick-start npm install 把自己的项目拷进去 npm run start就启动起来了 npm run packager就打包出来了 热更新 因为Chromium的缘故,即使很小的项目打包出来也有120M左右,如果给客户使用,不可能每次有点改动就让客户重新安装,显然我们需要热更新。 热更新的原理:每次启动程序我们就去拿本地的版本号和服务器上的版本号做对比,如果不一致就去请求资源,下载下来更新本地文件。 首先我们观察打包出来的文件,发现原始文件都放在resources/app下面的,也即是说我们下载下来的文件直接覆盖到resources/app下就可以达到更新了。 这里我推荐七牛云

changing the value of attributes using puppeteer

前提是你 提交于 2021-02-16 09:15:45
问题 I have an element 'input[name=startdate]' with an attribute 'value="2018-06-20"' instead of using puppeteer to interact with the calendar that is used to change the date, is there anyway I can use puppeteer to set the value instead? something like... let newDate = '2018-01-01' value.innerHTML = newDate 回答1: I was able to figure it out and I'm posting it here in case anyone else has the same problem. await page.$eval('input[name=startdate]', e => e.setAttribute("value", "2018-01-01")) If you

changing the value of attributes using puppeteer

狂风中的少年 提交于 2021-02-16 09:15:25
问题 I have an element 'input[name=startdate]' with an attribute 'value="2018-06-20"' instead of using puppeteer to interact with the calendar that is used to change the date, is there anyway I can use puppeteer to set the value instead? something like... let newDate = '2018-01-01' value.innerHTML = newDate 回答1: I was able to figure it out and I'm posting it here in case anyone else has the same problem. await page.$eval('input[name=startdate]', e => e.setAttribute("value", "2018-01-01")) If you

Android内存优化14 内存泄漏常见情况5 特殊对象造成的内存泄漏 WebView内存泄漏

左心房为你撑大大i 提交于 2021-02-14 22:49:07
WebView造成内存泄露 关于WebView的内存泄露,因为WebView在加载网页后会长期占用内存而不能被释放,因此我们在Activity销毁后要调用它的 destory() 方法来销毁它以释放内存。 另外在查阅 WebView 内存泄露相关资料时看到这种情况: Webview 下面的 Callback 持有 Activity 引用,造成 Webview 内存无法释放,即使是调用了 Webview.destory() 等方法都无法解决问题(Android5.1之后)。 最终的解决方案是:在销毁 WebView 之前需要先将 WebView从 父容器中移除,然后在销毁 WebView 。详细分析过程请参考这篇文章: WebView内存泄漏解决方法 。 @Override protected void onDestroy () { super.onDestroy(); // 先从父控件中移除WebView mWebViewContainer.removeView(mWebView); mWebView.stopLoading(); mWebView.getSettings().setJavaScriptEnabled( false); mWebView.clearHistory(); mWebView.removeAllViews(); mWebView.destroy(); }

Chromium Microsoft Edge正式版发布,可供下载。

泄露秘密 提交于 2021-02-13 17:13:16
自新型冠状病毒的肺炎疫情发生以来到现在,已有1356例确诊。这个新年假期还是尽量不要出门聚会了,出门的话要带上N95或者外科口罩。 最近微软发布了新的基于 Chromium 的 Microsoft Edge 浏览器现已可在 Windows 10,Windows 7,Windows 8.1 和 macOS 上手动下载。该浏览器支持 90 种语言,用户可以从此处手动下载。同时,Microsoft Edge 也可在 iOS 和 Android 上使用。 『 Edge 』 Chromium版Edge浏览器 全新界面更加清爽现代化,全面支持全局翻译、阅读模式、第三方扩展插件以及人声语音朗读等各种功能,此外,内存占有大幅优化,相对来说更省电、流畅,非常适合笔记本用户,全面支持兼容Windows 10、Windows 7、MacOS、Android、iOS。Microsoft Edge,基于谷歌Chromium内核,支持全局翻译、阅读模式、第三方扩展插件以及人声语音朗读等各种功能,微软计划对Edge浏览器定期更新,如每日、每周和数周一次的Canary、Dev和Beta更新等。 新的 Edge 不会对您当前使用的任何浏览器进行任何更改。如果您使用 Google Chrome 或 Firefox 作为默认浏览器,则这些浏览器将在 Windows 或 macOS 上保留为默认应用。

龙芯、鲲鹏、飞腾……等国产平台的浏览器

隐身守侯 提交于 2021-02-12 11:50:44
一、鲲鹏、飞腾(ARM64) 360安全浏览器(基于chromium) https://my.oschina.net/chipo/blog/3066807 二、龙芯(MIPS64EL) 龙芯浏览器 3.0(Chromium 81) http://ftp.loongnix.org/browser/lbrowser/ FireFox https://mirrors.tuna.tsinghua.edu.cn/debian/pool/main/f/firefox/ FireFox ESR https://mirrors.tuna.tsinghua.edu.cn/debian/pool/main/f/firefox-esr/ 360安全浏览器(基于chromium) https://my.oschina.net/chipo/blog/3066807 三、性能测试网站 http://dromaeo.com/ https://web.basemark.com http://chromium.github.io/octane/ 来源: oschina 链接: https://my.oschina.net/u/2816653/blog/3067626