[Webkit-unassigned] [Bug 25212] Support constructing nested workers.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 27 02:27:51 PDT 2023


https://bugs.webkit.org/show_bug.cgi?id=25212

--- Comment #13 from frederik.bertling at gmail.com ---
Thanks for the polyfill, I tried it, but in subworkers.js the following message function is called:

self.postMessage({
  _subworker: true,
  cmd: 'newWorker',
  id: this.id,
  path: absPath
});

but never receiver anywhere. I guess, it should be received here:

var messageRecieved = function(event){
  if (event.data._subworker){
    cmds[event.data.cmd](event);
  }
};

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20230327/20d5efb0/attachment.htm>


More information about the webkit-unassigned mailing list