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

前端 未结 3 1494
北海茫月
北海茫月 2021-02-03 18:40

I\'m trying to learn something about JavaScript threading. And from a tutorial I learned about HTML5 API web worker. This API enables JavaScript multi-threading. So I start to f

3条回答
  •  无人共我
    2021-02-03 19:22

    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

提交回复
热议问题