Why was HTML5 Web Workers support removed from the Android browser in versions 2.2 and up?

假装没事ソ 提交于 2019-12-02 21:42:26

from config.h of Android 2.2.


commit 68698168e7547cc10660828f1fb82be7a8efa845

Author: Steve Block

Date: Wed Mar 17 14:37:19 2010 +0000

Disable workers

This is because V8 on Android does not have the required locking. Also disables channel messaging, which is used only with workers.

Bug: 2522239

Change-Id: I6cb91b4048c7e1a0351e422561625397a2e98986


via http://code.google.com/p/android/issues/detail?id=10004#c7

Regarding when the API will be available, Web Workers (but not shared workers) are now available in Chrome Mobile, available only for ICS (Android 4.0) and higher devices.

Note that the built-in browser on Android 4 does not support workers; you must install Chrome.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!