Re: [w3c/IndexedDB] Integrate with window.onerror (#49)

Note that in a worker, the propagation path in Firefox is

IDBRequest -> IDBTransaction ->IDBDatabase => Worker global => Worker object => Window global

In the above, "->" indicates a single `Event` propagation path and "=>" indicates that a new `Event` is fired unless the previous `Event` was cancelled.

Since Firefox support nested workers, the propagation path can even be

IDBRequest -> IDBTransaction ->IDBDatabase => Worker 2 global => Worker 2 object => Worker 1 global => Worker 1 object => Window global


Where "Worker 2" is a nested worker inside of "Worker 1"

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/49#issuecomment-237172028

Received on Wednesday, 3 August 2016 08:28:47 UTC